okay so i'm making code for my girlfriend for our 6th anniversary. I'm a complete noob to programming. I'm writing some very simple code to make, basically an input output machine of number inputs, in order for the user (her) to receive string outputs.
i keeps seeing "none" when i run my code. why? here goes.
def love(n):
if n < 0 :
print "Why would it be negative?!"
if n == 0 :
print "well that is just hurtful"
if n == 1 :
print "I REALLY love you"
if n == 2 :
print "You make me smile at least once, each and every day"
if n == 3 :
print"you wouldn't believe how annoying it was to get this program to run properly! but it was worth it"
if n == 4 :
print "let's " + "shoot a little higher than that"
else:
print "I honestly can't see myself without you anymore"
print love(0)
print "Wanna try again? :D "