摘要: 1、%d,%s,%f等符号格式化。 name = "小红" print('大家好,我叫%s' % name) # 大家好,我叫小红 常见的格式化符号:格式符号 转换%s 通过str()字符串转换来格式化%u 无符号的十进制整数%d 有符号的十进制整数%o 八进制整数%x 十六进制整数,小写字母%X 阅读全文
posted @ 2021-09-25 11:29 逍遥abin 阅读(41) 评论(0) 推荐(0) 编辑
摘要: -空格处理:ljust,rjust,center,lstrip,rstrip,strip lstrip(),rstrip(),strip():去除空格,依次是去除左边空格、去除右边空格、去除所有空格 ljust('number'),rjust('number'),center('number'):增 阅读全文
posted @ 2021-09-25 10:58 逍遥abin 阅读(429) 评论(0) 推荐(0) 编辑
摘要: -替换内容:replace replace(old,new,count) 默认全部替换,也可以用count指定次数 -切割字符串:split,rsplit,splitlines,partition,rpartition split('分隔符',maxsplit) 返回结果是一个列表,maxsplit 阅读全文
posted @ 2021-09-25 10:33 逍遥abin 阅读(309) 评论(0) 推荐(0) 编辑