Skip to content

Instantly share code, notes, and snippets.

@bugkiller78
Last active October 14, 2020 19:21
Show Gist options
  • Save bugkiller78/6b5d51f067fb7fac0b50e474d856a2dc to your computer and use it in GitHub Desktop.
Save bugkiller78/6b5d51f067fb7fac0b50e474d856a2dc to your computer and use it in GitHub Desktop.
SmartNinja_DN1_Marko
#Domača naloga 1
#Mood checker
print("Please answer to the following question")
mood = input("What is your mood today:")
if str.lower(mood) == "happy":
print("It is great to see you happy!")
elif str.lower(mood) == "nervous":
print('Take a deep breath three times!!!')
elif str.lower(mood) == "excited":
print("Wow, what's going on?")
elif str.lower(mood) == "relaxed":
print("Keep it chilling man...")
elif str.lower(mood) == "sad":
print("What's wrong?")
else:
print("Sorry, i can't define your mood today!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment