def main():
x = eval(input("Enter the number of the month you wish to know how much you have: "))
for month in (1, 2, 3, 4):
print("for this month 1 you have" , month * 10 , "dollar")
main()的
我试图在运行后获得此结果:
请输入天数:4 第1个月:10美元 第2个月:20美元 第3个月:30美元 第4个月:40美元
我在每个月的每一行都有编号问题:(
答案 0 :(得分:0)
将您的代码读作:
print("for this month {month} you have".format(month=month) , month * 10 , "dollar")
真正的魔力是Python的.format()
。您可以在Python Documentation。
你也可以:"for this month {} you have".format(month)