我正在尝试打印元组的元素,然后将变量重新分配给稍有不同的元组。但是,在打印第二个元组时,spyder抛出以下语法错误:
扫描三引号字符串文字时的EOF
fruits = ('grape', 'orange', 'apple', 'banana', 'pear')
for fruit in fruits:
print(fruit)
fruits = ('grape', 'orange', 'apple', 'pineapple', 'pumpkin')
for fruit in fruits:
print(fruit)
预期结果是:
grape
orange
apple
banana
pear
grape
orange
apple
pineapple
pumpkin
实际结果是:
SyntaxError:扫描三引号字符串文字时EOF