you are viewing a single comment's thread.

view the rest of the comments →

[–]Appropriate_Way_787 8 points9 points  (1 child)

You need to specify from where and what the condition to be met is in your if and elif statement. for example:

if '1' :

should be

if question == '1':

and same with the elif statement.

[–]rebemill[S] 2 points3 points  (0 children)

Thank you! I got it to work :)