
xxxxxxxxxx
#Meet E.V.E. - www.101computing.net/meet-eve
#Introduction
print("Hello my name is E.V.E. I am a computer algorithm.")
name = input("What is your name?")
print("Hello " + name + ".")
print("Nice to meet you")
#Would you like to talk to me?
talk = input("Would you like to chat with me?").lower()
if talk=="yes":
print("Cool, I love chatting with human beings.")
elif talk=="no":
print("Ok, it was nice to meet you. Bye for now.")
exit()
else:
print("Not sure I know what you meant but will talk to you anyway.")
#print an empty line
print("")
#Music
band = input("What's your favourite band?").lower()
if band=="1d" or band=="1 direction" or band=="one direction":
print("Oh no... not One direction!")
elif band=="coldplay":
print("Yes, that's my favourite band too.")
elif band=="snow patrol":
print("I like this band too, but I prefer Coldplay")
else:
print("Ok. I don't know this band. Mine is Coldplay.")
#print an empty line
print("")
#Carry on asking questions from here...
task_alt