我該如何添加功能?由於我們正在學習本章功能爲我實現一個這個program.This是很重要的是到目前爲止我的代碼: 分數= []如何添加功能
def print_scores(copy_scores):
for i in range(len(copy_scores)):
print (copy_scores[i],)
scores = [75, 84, 66, 99, 51, 65]
print_scores (scores)
print()
while True:
scores = int(input("Please enter your score values"))
if scores == -99:
break
Sample output:
75, 84, 66, 99, 51, 65
P P P P F P
您需要具體說明您正在實施這些功能的問題。 – Barmar
我該如何打印分數以及用戶是否通過使用函數或失敗? –
提示:使用'scores.append()'將一些東西添加到'scores'列表中。讀取輸入時不要替換列表變量。並確保您獲得正確的縮進。 – Barmar