将其他数据类型转换为string

1
str(data)

重复字符串指定次数

1
‘abc' * 128

字符串前缀匹配

1
string.beginswith(str)

字符串后缀匹配

1
string.endswith(str)

留言