美文网首页
2018-07-21-python-列表

2018-07-21-python-列表

作者: mychineseheart | 来源:发表于2018-07-21 00:33 被阅读0次

    列表:

    [ ]空列表

    [1,2,3]

    list()

    list(可迭代对象)

    list(‘abcd’)

    list(range(4))

    list([1,2,3,4])

    实例:

    >>> for x in [0,1,2,3,4,5,6,7]:  # 注意格式!

    ...        print(x)    #注意格式,使用tab键自动补齐,print 与x 对齐.

    ...

    0

    1

    2

    3

    4

    5

    6

    7

    # 这个句子,用的精妙,就像用鱼钩钓鱼一样,把里面的数字(大鱼)一个一个调出来,精妙.

    钓鱼

    相关文章

      网友评论

          本文标题:2018-07-21-python-列表

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