例如...
day=1 question=int(input("How many cookies did you eat on day number", day, " ?"))
然后在一个循环中,我已经day=day+1
这样了,当它重复时,它询问第1,2,3天......
我明白这不是正确的语法,显然,因为Python一直拒绝它说它期望一个参数并得到三个.我该如何设置?
使用字符串格式:
input("How many cookies did you eat on day number {}?".format(day))