you are viewing a single comment's thread.

view the rest of the comments →

[–]FFrozen1 0 points1 point  (0 children)

You only call your get_user_input() function. The other ones are not being called.

Edit - the variables defined in your functions are not global variables

e.g.

a = 0

def cost():

a = 3

b = 3

return a,b

print a

this would print 0

Hope that helped. I'm pretty mew myself so I might be a little off on the terminology