摘要: 1. 将字符串首字母变成大写 str.capitalize() 2. 将字符串全部变成大写或小写 str.lower(); str.upper() 3. 字符串居中 str.center(100, '=') 4. 查找指定子字符串出现的次数 str.count(substr, start,end) 阅读全文
posted @ 2020-08-20 22:23 leungqingyun 阅读(67) 评论(0) 推荐(0) 编辑