Python中字符串的灵活运用
先举一个例子:
# coding: utf-8
string = 'When your mind is simple, your world is simple'
print('定义长度:', string.zfill(50))
print('获取元素i的个数:', string.count('i', 0, 50))
print('判断开头的元素是不是e:',string.startswith('e'))
print('判断结尾的元素是不是e:', string.endswith('e'))..
原创
2020-07-26 18:35:22 ·
131 阅读 ·
0 评论