我列出了一年中的几个月, 我有一个空的名为sales
的第二个列表我将如何要求用户每个月输入一次。 即
Jan>>>user enters sales
Feb>>>user enters sales
等。 用户输入的金额应添加到销售清单中。
我是python的新手
由于
答案 0 :(得分:1)
如果我理解你的问题,你正在寻找这样的事情:
months = ["Jan", "Feb", "Mar"] # and so on
sales = []
for month in months:
sales.append(input("Enter sales for %s" % month))
我建议查看有关python编程的简单教程。
答案 1 :(得分:1)
您可以通过for循环迭代月份列表并提示用户输入。例如,看看下面的代码。
months = ['jan', 'feb', 'mar', 'aprl']
sales = []
for idx, month in enumerate(months):
sales.append(int(input('enter sale')))
print(sales)
答案 2 :(得分:0)
.spinner {
border: 1px solid;
position: fixed;
z-index: 1;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 50 50'%3E%3Cpath d='M28.43 6.378C18.27 4.586 8.58 11.37 6.788 21.533c-1.791 10.161 4.994 19.851 15.155 21.643l.707-4.006C14.7 37.768 9.392 30.189 10.794 22.24c1.401-7.95 8.981-13.258 16.93-11.856l.707-4.006z'%3E%3CanimateTransform attributeType='xml' attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='0.6s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E") center / 50px no-repeat;
}