Python 一个元素的元组
用一个项目创建元组
要创建一个只有一个项目的元组,你必须在项目后添加一个逗号,除非 Python 不会将该变量识别为一个元组。
实例
一个项目元组,记住逗号:
thistuple = ("apple",)
print(type(thistuple))
#NOT a tuple
thistuple = ("apple")
print(type(thistuple))
亲自试一试 »
要创建一个只有一个项目的元组,你必须在项目后添加一个逗号,除非 Python 不会将该变量识别为一个元组。
一个项目元组,记住逗号:
thistuple = ("apple",)
print(type(thistuple))
#NOT a tuple
thistuple = ("apple")
print(type(thistuple))
亲自试一试 »
如果您发现内容有误或提出修改建议,请随时向我们发送 E-mail 邮件:
421660149@qq.com
您的建议已发送到 W3schools。