美文网首页
0_python 常用操作记录

0_python 常用操作记录

作者: 豆瓣酱_cf2f | 来源:发表于2021-01-09 10:37 被阅读0次

    ### 字符串

    ###### 修改大小写

    name = "ada lovelace"

        print(name.title)  # 大写首字母

        print(name.upper)  # 统一为大写

        print(name.lower)  # 统一为小写

    n = ada"+"lovelace

    ###### 字符串拼接

    a = 'ada'

    b = 'lovelace'

    n = a+" "+b

    print(n)

    ###### 制表符和换行符

        print("\n你是我触碰不到的风醒不来的梦,\n寻不到的天堂医不好的痛")

        print("\n点不着的香烟松不开的手\n忘不了的某某某")

        # 使用 \n 进行换行

    print("ada\tlovelace")

        # 使用 \t 添加空白

    ###### 删除字符串空白

    n = 'Python '

    n.rstrip()

        # 临时去除空格,直接使用方法rstrip

    n = n.rstrip()

        # 永久去除空格,必须将结果返回到变量 n 中

        n.lstrip()  # 去除字符串开头空格

        n.rstrip()  # 去除字符串结尾空格

        n.strip()  # 同时去除字符串两端空格

    ###### 如何编写注释

        # 这个地方是注释

        # 如果在语句后添加注释应空两格,再写#

        import this  # 这是 Python 之禅

    相关文章

      网友评论

          本文标题:0_python 常用操作记录

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