Break Is Outside The Loop Python
while True: x = raw_input() if x =='personal information': print' Edward , Height: 5,10 , EYES: brown , STATE: IL TOWN: , SS:' elif x =='journal': n
Solution 1:
Yes, look at your post. Your else
probably is meant to go with the if
statement's indentation level.
else
statements for while
statements do entirely different things.
Post a Comment for "Break Is Outside The Loop Python"