元组是存放任意元素集合,不能修改其内容;
len()是求元组的长度, 可以使用下标标示符("[]")去访问元组的数据;
元组内还可以包含元组, 可以通过新建一个元组, 扩充已有的元素;
代码如下:
# -*- coding: utf-8 -*- #==================== #File: abop.py #Author: Wendy #Date: 2013-12-03 #==================== #eclipse pydev, python3.3 #元组, 表示不能修改的一组的值 zoo = ('python', 'elephant', 'penguin') print('Number of animals in the zoo is', len(zoo)) new_zoo = ('monkey', 'camel', zoo) #新建元组, 不是修改 print('Number of cages in the new zoo are', len(new_zoo)) print('All animals in new zoo are', new_zoo) print('Animals brought from old zoo are', new_zoo[2]) #把zoo放入new_zoo的第2个位置(从0开始) print('Last animal brought from old zoo is', new_zoo[2][2]) #元组包含元组 print('Number of animals in the new zoo is', len(new_zoo)-1+len(new_zoo[2])) #减去当前元素[2]和[2]的长度(3-1+3)
输出:
Number of animals in the zoo is 3 Number of cages in the new zoo are 3 All animals in new zoo are ('monkey', 'camel', ('python', 'elephant', 'penguin')) Animals brought from old zoo are ('python', 'elephant', 'penguin') Last animal brought from old zoo is penguin Number of animals in the new zoo is 5
返回栏目页:http://www.bianceng.cnhttp://www.bianceng.cn/Programming/extra/
作者:csdn博客 Spike_King
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索python
, camel
, new
, python in
, number
, print
, 元组
, python3.3教程
, python3.3
, python元组
, python元组操作
, 元组tuple
tuple元组
tuple元组、python knn 代码详解、tuple2详解、spark tuple2详解、scala tuple2详解,以便于您获取更多的相关知识。