So basically, what I want to do is to use "if / else" as switches for program to choose a path.
I want more indented if / else NOT to work, if my elif statement was false. Is it possible?
Code:
aStr = "abcdef"
char = "e"
if aStr == '':
return False
elif len(aStr) == 1:
if char == aStr:
return True
else:
print "Python is stupid"
return False
else:
And it returns "Python is stupid", which I don't meant it to do!
elseclause? It seems to me that should be the branch your program takes... – mgilson Jan 17 at 2:21returnoutside a function. You also can't have the danglingelse). If it's supposed to be inside a function, why can't you put it inside one? Why not show what's in the finalelse:block since that's what looks like it should be executing? – gnibbler Jan 17 at 3:18