热门标签
更多>
搜索结果
查询Tags标签: thattuple,共有 2条记录-
python 集合 元素 Tuple
元组(Tuple) 元组是有序且不可更改的集合。在 Python 中,元组是用圆括号编写的。 元组基础#创建元组 thistuple=(apple,orange) print(thistuple)#(apple, orange)#访问tuple的项目 print(thistuple[1])#orange#负索引表示从末尾开始,-1 表示最后一个项目,-2 表示倒数…
2021/8/10 1:35:53 人评论 次浏览 -
python 集合 元素 Tuple
元组(Tuple) 元组是有序且不可更改的集合。在 Python 中,元组是用圆括号编写的。 元组基础#创建元组 thistuple=(apple,orange) print(thistuple)#(apple, orange)#访问tuple的项目 print(thistuple[1])#orange#负索引表示从末尾开始,-1 表示最后一个项目,-2 表示倒数…
2021/8/10 1:35:53 人评论 次浏览