引言
一、元组的创建方式
#第一种: t = ("python","No.1") print(t) print(type(t)) #第二种: 内置函数tuple() t1 = tuple(("python","No.2")) print(t1) print(type(t1))
注:当元组中只有一个元素时候,需要加 逗号!!!!
二、元组的遍历
for item in t1 : print(item) for i in range(2) : print(t[i])
总结
本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注服务器之家的更多内容!
原文链接:https://blog.csdn.net/weixin_42196338/article/details/120818270