We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
解释器版本: 3.6.4 a = ([1,2]) a[0][1] = 0 报错 元组不写逗号, 默认是一个变量, 不能通过索引得到 正确写法: a = ([1,2], ) a[0][1] = 0
The text was updated successfully, but these errors were encountered:
OK
Sorry, something went wrong.
No branches or pull requests
解释器版本: 3.6.4
a = ([1,2])
a[0][1] = 0
报错
元组不写逗号, 默认是一个变量, 不能通过索引得到
正确写法:
a = ([1,2], )
a[0][1] = 0
The text was updated successfully, but these errors were encountered: