Okay so I have been coding in Python and i was just trying to make a simple program but for some reason i can't figure it out! Any help would be awesome.
Here it is:
print ('Hello!')
print ('What is your name?')
myName= input()
print ('Nice to meet you ' + myName)
print ( 'What do you like to do')
myHobbies=input()
if myHobbies=('nothing'):
print("Oh, that's too bad")
print ('Oh I LOVE too' + myHobbies)
print('Have you ever tried bowling professionally?')
myBowl=input()
print("Don't lie!!!")
mylie=input()
print('Okay I believe you, but i have to go!')
print (' Bye!')
end=input()
If you noticed i tried to add in a little area where someones answer might be no, or nothing but i don't really know how, this was just a guess. Anyway the program won't run, so what should i do?