Skip to content

Instantly share code, notes, and snippets.

@toddmilne13
Created February 8, 2018 15:21
Show Gist options
  • Save toddmilne13/a56ddccb3ba72e64cdbb5c40d3ca7825 to your computer and use it in GitHub Desktop.
Save toddmilne13/a56ddccb3ba72e64cdbb5c40d3ca7825 to your computer and use it in GitHub Desktop.
from time import sleep
while True:
print("Welcome to my code on some song suggestions")
choice=input("what mood are you in, Happy, Sad or any other mood")
if choice=="happy":
print("Maybe listen to some pop music or electric music")
sleep(1)
print("Try this song.. https://www.youtube.com/watch?v=ZbZSe6N_BXs ")
sleep(1)
print("Hopefully you like it!")
elif choice=="sad":
print("Maybe listen to some upbeat songs to try and cheer you up")
sleep(1)
print("Try this song.. https://www.youtube.com/watch?v=Gs069dndIYk ")
sleep(1)
print("Hopefully you like it!")
elif choice=="any other mood":
print("Just listen to whatever you weant i guess, i dont know what mood youre in listen to some music that you like")
sleep(1)
print("Try this song though.. https://www.youtube.com/watch?v=dQw4w9WgXcQ ")
sleep(1)
print("Hopefully you like it!")
else:
print("type either sad, happy or any other mood")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment