Back to Browse

python基础 22 列表 list (教学教程tutorial)

26.4K views
May 28, 2016
11:57

详细文字教程: https://morvanzhou.github.io/tutorials/ python3 简单教学教程 列表的基本功能. 例子: a = [1,1,1,1] a.append(2) a.insert(1,2) a.remove(2) # remove the first item whose value is 2 a[1] a[-1] a[1:3] a[-3:] a.index(2) # return the first item's index whose value is 2 a.count(2) # number of 2 in the list a.sort(reverse=True) 播放列表: https://www.youtube.com/playlist?list=PLXO45tsB95cIRP5gCi8AlYwQ1uFO2aQBw

Download

1 formats

Video Formats

360pmp415.3 MB

Right-click 'Download' and select 'Save Link As' if the file opens in a new tab.

python基础 22 列表 list (教学教程tutorial) | NatokHD