Python 单元素元组
创建单元素元组
要创建一个只有一个元素的元组,您需要在元素后面添加一个逗号,否则 Python 不会将该变量识别为元组。
示例
单元素元组,记住逗号
thistuple = ("apple",)
print(type(thistuple))
# 不是元组
thistuple = ("apple")
print(type(thistuple))
自己试试 »
要创建一个只有一个元素的元组,您需要在元素后面添加一个逗号,否则 Python 不会将该变量识别为元组。
单元素元组,记住逗号
thistuple = ("apple",)
print(type(thistuple))
# 不是元组
thistuple = ("apple")
print(type(thistuple))
自己试试 »
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]