美文网首页
python中字符串,列表,元组,字典的使用

python中字符串,列表,元组,字典的使用

作者: csucoderlee | 来源:发表于2016-05-03 10:51 被阅读0次

    字符串

    python中的字符串的基本使用方法和java中几乎没什么太大的区别

    s = "he aren\'t my %s brother %s"    #这里写下占位符如何使用

    print(s % ('fifth' , 'now'))    # python3.0 中,print是一个函数方法  这里传入的是三个参数,之间没有逗号隔开

    列表

    list1 = ['a', 'b', 'c', 'd', 'e', 'f']

    print(list1[5])

    list1[5] = 'g'    # 替换列表下标[5]的内容

    print(list[5])

    del list1[5]     # 删除列表下标[5]的内容

    print(list1)

    list1.append('f')    # 在列表的最后,添加新的元素

    print(list1)

    print(list1 + list1)    # 列表可以像java中的字符串,直接拼接

    元组

    元组就像是一个使用括号的列表。

    元组与列表的主要区别在于元组一旦创建就不能改变了。

    fibs = (0, 1, 2, 3, 4, 5)

    print(fibs[3])

    字典

    字典(dict,是dictionary的缩写。也叫map,映射)

    favorite_sports = { 'a' : 'football',

         'b' : 'basketball',

         'c' : 'baseball'

    }

    print(favorite_sports['a'])    # 注意这里的a是字符串,要带上引号

    del favorite_sports['c']

    print(favorite_sports)

    favorite_sports['a'] = 'baseball'

    print(favorite_sports)

    这里,留个作业,如果想要向字典中,添加新的元素怎么做?

    相关文章

      网友评论

          本文标题:python中字符串,列表,元组,字典的使用

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