Why does my code not return anything

后端 未结 5 1538
终归单人心
终归单人心 2021-01-29 16:28

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         


        
5条回答
  •  借酒劲吻你
    2021-01-29 17:16

    You have to explicitly use the return keyword. Probably where you currently have print c.

    f needs to return ba after the while loop.

提交回复
热议问题