• python学习:字符串


    字符串

    #字符串操作
    # 对应操作:
    # 1.重复输出字符串
    # print('hello'*2)
    # 2.[],[:]通过索引获取字符串中字符,这里和列表的切片操作是相同的,具体内容见列表
    #print('hellworld'[2:])
    # 3.in,成员运算符,如果字符串中包含给定的字符返回true
    #print('el' in 'hello')
    # 4.%,格式字符串
    # print('alex is a good teacher')
    # print('%s is a good teacher' % 'alex')
    # 5.+,字符串拼接
    # a = '123'
    # b = 'abc'
    # c = '456'
    # # d = a + b + c
    # # print(d)
    # # +,效率低,改用join拼接
    # e = ''.join([a,b,c])
    # print(e)
    # f = '-------'.join([a,b,c])
    # print(f)

    #6.字符串字母大小写变化
    name = "ada lovelace"
    print(name.title())
    #在print()语句中,方法titel()出现在变量的后面。方法是python对数据执行的操作。每个方法后面都跟着一对括号,因为方法需要额外的信息来完成其工作,这种信息是在括号内提供的。
    #title()以首字母大写的方式显示每个单词,即将每个单词的首字母都改为大写。
    #其他有用的大小写处理方法:将字符串改为全部大写或全部小写
    name = "Ada Lovelace"
    print(name.upper())
    print(name.lower())

     
  • 相关阅读:
    示例 json with js
    JS json
    jquery
    发布包规范
    20180320待编辑
    CefSharp中c#和js交互
    列举mvc ActionResult的返回值
    怎么实现第三方登录
    mvc @Html控件
    MVC webuploader 图片
  • 原文地址:https://www.cnblogs.com/pl-2018/p/9544919.html
Copyright © 2020-2023  润新知