+ 1
Can somebody help and tell me what is wrong with this code
3 Antworten
+ 5
Bleart B Prekadini ,
the third last line is print(...) but should be input(). currently no input is taken for variable choice.
choice = input('continue? yes/no')
happy coding!
+ 1
Python accepts indentation of even spaces or in tabs.
You have given 3 spaces as indentation for if statement. So it does not work.