Mar-21-2017, 01:10 AM
(This post was last modified: Mar-21-2017, 01:33 AM by ichabod801.)
I have this as a sample code but my questions of 'How are you?' and 'Do you like computers?' do not return the correct answers to my input. Any help would be great

q_name = raw_input('What is your name? ') print 'Hello %s.' %q_name how_are = raw_input('How are you? ').lower if how_are == 'good' or how_are =='great' or how_are =='fantastic': print 'Im glad to hear.' elif how_are == 'bad' or how_are == 'not good' or how_are == 'awful': print 'Im sorry to hear' else: print "I am sorry, I am a computer and don't have emotions." q_comp = raw_input('Do you like computers? ').lower if q_comp == 'yes': print 'Awesome!' else: print "That's dumb"