Python中列表与元组的乘法操作示例

时间:2022-09-23 16:38:59

本文实例讲述了Python列表元组乘法操作。分享给大家供大家参考,具体如下:

直接上code吧,还可以这么玩儿

列表乘法:

?
1
2
3
li=[1,]
li=li*3
print(li)

out:

?
1
[1, 1, 1]

元组乘法:

?
1
2
3
>>> t=(1,2)
>>> t*3
(1, 2, 1, 2, 1, 2)

但字典,集合不能这么玩

例如:

?
1
2
3
4
5
6
7
8
>>> dict1={'k1':1,'k2':2}
>>> dict1*2
#报错
Traceback (most recent call last):
 File "<pyshell#1>", line 1, in <module>
  dict1*2
TypeError: unsupported operand type(s) for *: 'dict' and 'int'
>>>

另外,字符串也可以使用乘法,例如:

?
1
2
3
4
>>> str1='hello python!'
>>> str1*3
'hello python!hello python!hello python!'
>>>

注意:在元组的定义中:(1,)代表着元组,(1,)*3可得到(1, 1, 1)
而(1)则只会被视为一个整数,(1)*3会得到3

希望本文所述对大家Python程序设计有所帮助。

原文链接:http://www.cnblogs.com/ccorz/p/5550448.html