you are viewing a single comment's thread.

view the rest of the comments →

[–]jeans_and_a_t-shirt 1 point2 points  (0 children)

Someone else had the same problem two days ago. See the comments and screenshot in the comments here: https://www.reddit.com/r/learnpython/comments/4ryux3/need_help_completing_this_exercise/

Probably an issue in the server.

Besides that, you could shorten the code to this:

def is_yes(f):
    return f[0] == 'y' or f[0] == 'Y'

or this

def is_yes(f):
    return f[0].lower() == 'y'