python基础操作---tuple
2020-12-11 10:05
标签:pytho -- tuple 括号 abc 操作 style 逗号 基础 输出---------------------------------------------------- python基础操作---tuple 标签:pytho -- tuple 括号 abc 操作 style 逗号 基础 原文地址:https://www.cnblogs.com/xiebinbo/p/10997089.html 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‘,)
上一篇:解决You should consider upgrading via the 'python -m pip install --upgrade pip' comman
下一篇:073-PHP数组元素相加
文章标题:python基础操作---tuple
文章链接:http://soscw.com/index.php/essay/23623.html