Python字符串常用函数

Python 字符串常用函数

    • 1.大小写
        • 1.1全小写
        • 1.2全大写
        • 1.3首字母大写
    • 2.去掉空格
        • 2.1去掉左空格
        • 2.2去掉右空格
        • 2.3去掉两边空格

1.大小写

1.1全小写

x.lower()

1.2全大写

x.upper()

1.3首字母大写

x.title()

2.去掉空格

2.1去掉左空格

x.lstrip()

2.2去掉右空格

x.rstrip()

2.3去掉两边空格

x.strip()

你可能感兴趣的:(python)