私はpython初心者です。私はこのコードを実行しようとしていました:
def main():
print ( " This program computes the average of two exam scores . ")
score1,score2 = input ("Enter two scores separated by a comma:")
average = (score1 + score2)/2.0
print ("The average of the score is : " , average )
私が召喚すると、main()
これを手に入れましたValueError
:
ValueError: too many values to unpack (expected 2)
このコードの何が問題になっていますか?