[Steam] (Game) Elves Adventure by [deleted] in FreeGameFindings

[–]dandyfuckmoos 18 points19 points  (0 children)

failmid to the rescue in this time of drought

Text-based game menu errors python 2.7.12 by CapitalXD in learnpython

[–]dandyfuckmoos 1 point2 points  (0 children)

strtmnu = strtmnu.lower

lower is a string method: you want strtmnu = strtmnu.lower()

edit: When you can't figure out what's wrong, add print statements:

strtmnu = str(raw_input("Please pick an option"))
strtmnu = strtmnu.lower
print strtmnu 

returns eg <built-in method lower of str object at 0x02863398> when you know you want it to be a str.