为了账号安全,请及时绑定邮箱和手机立即绑定

循环一个函数直到它达到阈值然后完成脚本

循环一个函数直到它达到阈值然后完成脚本

MMTTMM 2021-08-11 18:47:43
我的任务是循环一个函数,该函数允许想象中的人花费最多 100 英镑或任何货币,直到 100 用完,在这种情况下脚本就结束了。当脚本运行时,它会将每个值相加并跟踪直到达到阈值!#This line should initialise a variablewhile #I need Finish this line with a loop condition.  x = int( input("How much is the next item? ") )  tot = tot+xprint("You cannot afford that!  You only have £" + str(100-(tot-x)) + "
查看完整描述

2 回答

?
芜湖不芜

TA贡献1796条经验 获得超7个赞

tot = 0

while True:

    x = int( input("How much is the next item? ") )

    if (tot+x)>100:

        print("You cannot afford that!  You only have £ {}".format(str(100-(tot))))

        continue #you want to skip this iteration and repeat

    if tot==100:

        print("You cannot afford more!")

        break #you want to stop

    tot += x


查看完整回答
反对 回复 2021-08-11
?
慕田峪9158850

TA贡献1794条经验 获得超7个赞

while True:
    do_stuff()
    if you_want_to_stop:
            break


查看完整回答
反对 回复 2021-08-11
  • 2 回答
  • 0 关注
  • 132 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信