LIST(列表)在Python里的作用?
LIST(列表)
很多變量的集合,用[]進(jìn)行定義
>>> some_numbers = [1, 2, 5, 10, 20]
>>> some_strings = ['Which', 'Witch', 'Is', 'Which']
>>> some_ some_strings.append(‘bear burp’) #追加項(xiàng)目
>>> del some_strings[2] #刪除第3項(xiàng)
>>> print(some_strings[2:3]) #顯示第3-4項(xiàng)
>>> print(some_strings) #顯示所有項(xiàng)
>>> print(some_numbers + some_strings) #可以做加法
>>> print(some_numbers * 5) #可以做乘法
點(diǎn)擊加載更多評(píng)論>>