我有一個程序的用戶輸入的信息,我有麻煩存儲沒有它在一個循環覆蓋從用戶信息。我的代碼如下:如何將用戶輸入存儲在循環中而不覆蓋?
def main():
total_circles = input("Enter the number of circles: ")
for number in range(1, int(total_circles) + 1):
circles = input("Enter the radius of circle {}: ".format(number))
circle_value = float(circles)
circle_value = [] + [circle_value]
是否有存儲每個半徑輸入到一個變量被添加到列表cValue
的方法嗎?
輸出:
Enter the number of circles: 2
Enter the radius of circle 1: 7
Enter the radius of circle 2: 4
'circle_value.append(浮點(圓圈))'應該做的伎倆,而不是'CIRCLE_VALUE =浮動(圓圈)' – SirParselot