位置:首頁 > 軟件操作教程 > 編程開發(fā) > Python > 問題詳情

LIST(列表)在Python里的作用?

提問人:楊紫紅發(fā)布時間:2020-11-18

LIST(列表)

    很多變量的集合,用[]進行定義

image.png

>>> some_numbers = [1, 2, 5, 10, 20] 

>>> some_strings = ['Which', 'Witch', 'Is', 'Which']

image.png

>>> some_ some_strings.append(‘bear burp’)      #追加項目

>>> del some_strings[2]                                          #刪除第3項

>>> print(some_strings[2:3])                                  #顯示第3-4項

>>> print(some_strings)                                          #顯示所有項

>>> print(some_numbers + some_strings)           #可以做加法

>>> print(some_numbers * 5)                                #可以做乘法

繼續(xù)查找其他問題的答案?

相關(guān)視頻回答
回復(fù)(0)
返回頂部