2023-06-17 |

字符串操作

字符串也可以用整数相乘。这会让字符串重复。字符串和整数的顺序无关紧要,字符串不能由其他字符串相乘。字符串也不能用浮点数相乘,即使浮点数是整数。
>>> print("spam" * 3)
spamspamspam

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

>>> 'pythonisfun' * 7.0
TypeError: can't multiply sequence by non-int of type 'float'
# 类型错误:浮点数不能和非整数类型相乘


格式操作

1

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论