元组 函数:tuple
跟列表几乎一模一样,元组是无法修改的,元组使用()
c = ('hello','python','linux','mysql','git') print(type(c)) print(c[1]) print(len(c))
当你的元组中,只有一个元素的时候,在最后面加上一个,(英文的逗号)
d = ('hello',) print(type(d))
2023-09-25 09:56:51
元组 函数:tuple
跟列表几乎一模一样,元组是无法修改的,元组使用()
c = ('hello','python','linux','mysql','git') print(type(c)) print(c[1]) print(len(c))
当你的元组中,只有一个元素的时候,在最后面加上一个,(英文的逗号)
d = ('hello',) print(type(d))