17-列表

高級變量類型

列表的定義

  • List(列表) 是 Python 中使用 最頻繁 的數據類型,在其餘語言中一般叫作 數組數組

  • 專門用於存儲 一串 信息app

  • 列表用 [] 定義,數據 之間使用 , 分隔spa

  • 列表的 索引0 開始code

def main():
    name_list = ['Tom', 'Jack']
    print(len(name_list))
    for name in name_list:
        print(name)

2
Tom
Jackblog

 

In [1]: name_list.
name_list.append   name_list.count    name_list.insert   name_list.reverse
name_list.clear    name_list.extend   name_list.pop      name_list.sort
name_list.copy     name_list.index    name_list.remove

 

def main():
    name_list = ['Tom', 'Jack']
    print(name_list)
    print(name_list[0])
    print(name_list.index('Jack'))

    name_list[1] = 'Mike'
    print(name_list)

    name_list.append('Mary')
    name_list.insert(2, '王二小')
    name_list.extend(['小明'])
    print(name_list)

['Tom', 'Jack']
Tom
1
['Tom', 'Mike']
['Tom', 'Mike', '王二小', 'Mary', '小明']索引

 

def main():
    name_list = ['Tom', 'Jack','Mike']
    name_list.remove('Jack')
    # name_list.clear()
    name_list.pop(0)
    print(name_list)

['Mike']  

 

應用場景

  • 儘管 Python列表 中能夠 存儲不一樣類型的數據開發

  • 可是在開發中,更多的應用場景是rem

    1. 列表 存儲相同類型的數據it

    2. 經過 迭代遍歷,在循環體內部,針對列表中的每一項元素,執行相同的操做class

相關文章
相關標籤/搜索