字符串操作

字符串操作
字符串也可以用整数相乘。这会让字符串重复。
字符串和整数的顺序无关紧要,字符串不能由其他字符串相乘。字符串也不能用浮点数相乘,即使浮点数是整数。

print(“spam” * 3)
spamspamspam

4 * ‘2’
‘2222’

‘17’ * ‘87’
TypeError: can’t multiply sequence by non-int of type ‘str’
#类型错误:字符串不能和非整数类型相乘

‘pythonisfun’ * 7.0TypeError: can’t multiply sequence by non-int of type ‘float’

类型错误:浮点数不能和非整数类型相乘

上一篇:性能分析


下一篇:ref属性