元组

元组  函数:tuple

跟列表几乎一模一样,元组是无法修改的,元组使用()

c = ('hello','python','linux','mysql','git')
print(type(c))
print(c[1])
print(len(c))

 

当你的元组中,只有一个元素的时候,在最后面加上一个,(英文的逗号)

d = ('hello',) 
print(type(d))

  

上一篇:JavaScript.基本语法


下一篇:Jenkins项目构建——配置邮箱服务器发送构建结果