美文网首页
字符串处理

字符串处理

作者: 不爱钱的张师傅 | 来源:发表于2018-09-09 10:34 被阅读0次

    Python 字符串处理常用函数

    1. 大小写
      举例:name = 'hello sushi'
      name.lower() # 小写 hello sushi
      name.upper() # 大写 HELLO SUSHI
      name.title() # 单词首字母大写 Hello Sushi

    2.去空格
    去开头空格 “ 李白”.rstrip()
    去末尾空格 “ 李白 ”.lstrip()
    去头尾空格 “ 李白 ”.strip()

    相关文章

      网友评论

          本文标题:字符串处理

          本文链接:https://www.haomeiwen.com/subject/ypmrgftx.html