Untitled
Tony2001
python
2 years ago
332 B
7
Indexable
def answer(morning, mom, asleep): if asleep == "True": return False else: if morning == "True": if mom == "True": return True else: return False else: return True print(answer(input("Morning? "), input("Mom? "), input("Asleep? ")))
Editor is loading...
Leave a Comment