0
如何將不存在的索引求和0我的意思是替換未找到的值。該計劃有一個問題,當我選擇較少的選擇,預計的總和程序寫我index out of range
,我想用0替換該值。
我該怎麼做,如果我想總結10個值或更少,我選擇減?如何用0替換列表中未找到的值(索引超出範圍)
scores = []
result_f = open("Tienda.txt")
for line in result_f:
(name,score) = line.split()
scores.append(float(score))
result_f.close()
Label(app,text="Su total es").pack()
r=int(scores[0])
w=int(scores[1])
a=int(scores[2])
d=int(scores[3])
g=int(r+w+a+d)
我希望把該款項在標籤的Tkinter的窗戶裏我是如何做到這一點,在Tkinter的窗戶數GET標籤,因爲當我這樣做它只是消失,並沒有顯示。 – Carlos