python基础操作---tuple

Posted xiebinbo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基础操作---tuple相关的知识,希望对你有一定的参考价值。

 1 #coding:utf-8
 2 
 3 tup1 = (physics, chemistry, 1997, 2000);
 4 tup2 = (1, 2, 3, 4, 5 );
 5 tup3 = "a", "b", "c", "d";
 6 tup4 = ();
 7 print tup4
 8 tup4 = ("aaa",);
 9 print tup4
10 # tuple不能修改内容,访问方式跟list、str一样
11 
12 # 任意无符号的对象,以逗号隔开,默认为元组
13 print abc, -4.24e93, 18+6.6j, xyz;
14 
15 tup5 = ("all")
16 print tup5
17 
18 tup6 = ("all",)
19 print tup6
20 # 输出字符串 all,这是因为括号()既可以表示tuple,又可以表示数学公式中的小括号。
21 # 所以,如果元组只有1个元素,就必须加一个逗号,防止被当作括号运算:

输出----------------------------------------------------
()
(‘aaa‘,)
abc -4.24e+93 (18+6.6j) xyz
all
(‘all‘,)

以上是关于python基础操作---tuple的主要内容,如果未能解决你的问题,请参考以下文章

Python基础之元组tuple(带了枷锁的列表)

Python基础学习06

python基础4-list和tuple

python3基础-list&tuple

python基础(str,list,tuple)

Python基础-python数据类型之元祖字典