Unsupported syntax 'Starred',翻译过来就是,不支持的语法 "*",
这个时候你就要检查一下是不是自己哪里的 "*" 用错了
在python里,我们用 "*" 来获取list中的元素
a = [1,2,3]
print(*a)
>>> output: 1,2,3
b = [[1,2],[3,4]]
print(*b)
>>> output:[1,2],[3,4]
Unsupported syntax 'Starred',翻译过来就是,不支持的语法 "*",
这个时候你就要检查一下是不是自己哪里的 "*" 用错了
在python里,我们用 "*" 来获取list中的元素
a = [1,2,3]
print(*a)
>>> output: 1,2,3
b = [[1,2],[3,4]]
print(*b)
>>> output:[1,2],[3,4]