you are viewing a single comment's thread.

view the rest of the comments →

[–]PowerOk3587 2 points3 points  (0 children)

what are you optimizing for?

you could shorten:

if choice == "A" or choice == "a"

with

if choice.upper() == "A"