fairly new to programming and trying to learn Python at the moment. I have this code and I don\'t understand why I don\'t get a return value :(
balance = 3200 an
You have to explicitly use the return keyword. Probably where you currently have print c.
return
print c
f needs to return ba after the while loop.
f
ba