📅  最后修改于: 2022-03-11 14:45:12.155000             🧑  作者: Mango
代码示例1
thistuple = ("apple","watermelon","cucumber","muskmelon)
print(type(thistuple))
#NOT a tuple
thistuple = ("apple")
print(type(thistuple))