Ask your own question, for FREE!
Computer Science 22 Online
OpenStudy (anonymous):

Please help: x = int(raw_input(' Jep nje numer: ' )) while x in range (1,10): if x%2 == 0: print 'even' else: if x%2 != 0: print 'Odd' When I try to run it in idle it says that there is a problem with else please can someone help me here.

OpenStudy (rsmith6559):

if x%2 != 0: This line is unneeded. Python blocks code by indenting. The else clause should be the same indent as the if statement. if( True ): # pass else: # pass

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!