詳解Python3中的Sequence type的使用
其實本來是要reverse一下list的,就去查了一下list[::-1]是什么意思,發(fā)現(xiàn)還有很多要注意的地方,所以就記一下。
主要是參照https://docs.python.org/3/library/stdtypes.html?highlight=list#list
首先Sequence type有三種
- list
- tuple
- range
slice
[i:j:k]表示的是slice of s from i to j with step k, 對三種類型都有用
>>> a = [1, 2, 3] >>> a[::-1] [3, 2, 1] >>> a = (1, 2, 3) >>> a[::-1] (3, 2, 1) >>> a = range(3) >>> a[::-1] range(2, -1, -1)
range中參數(shù)是range(start, stop[, step])
initialize a list
s * n表示的是n shallow copies of s concatenated
注意是淺拷貝哦,所以會有如下情況
>>> lists = [[]] * 3 >>> lists [[], [], []] >>> lists[0].append(3) >>> lists [[3], [3], [3]]
如果元素不是對象的話就沒關系
>>> lists = [0] * 3 >>> lists [0, 0, 0] >>> lists[0] = 1 >>> lists [1, 0, 0]
正確的初始化嵌套list的方法應該是
>>> lists = [[] for i in range(3)] >>> lists[0].append(3) >>> lists[1].append(5) >>> lists[2].append(7) >>> lists [[3], [5], [7]]
concatenation pitfall
(感覺還是英文說的清楚些,這一點跟Java是一樣的)
Concatenating immutable sequences always results in a new object. This means that building up a sequence by repeated concatenation will have a quadratic runtime cost in the total sequence length. To get a linear runtime cost, you must switch to one of the alternatives below:
相關文章
Pytorch.nn.conv2d 過程驗證方式(單,多通道卷積過程)
今天小編就為大家分享一篇Pytorch.nn.conv2d 過程驗證方式(單,多通道卷積過程),具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-01-01
python?中的requirements.txt?文件的使用詳情
這篇文章主要介紹了python?中的requirements.txt文件的使用詳情,文章圍繞主題展開詳細內容介紹,具有一定的參考價值,需要的小伙伴可以參考一下2022-05-05
Python操作PostgreSQL數(shù)據(jù)庫的基本方法(增刪改查)
PostgreSQL數(shù)據(jù)庫是最常用的關系型數(shù)據(jù)庫之一,最吸引人的一點是它作為開源數(shù)據(jù)庫且具有可拓展性,能夠提供豐富的應用,這篇文章主要給大家介紹了關于Python操作PostgreSQL數(shù)據(jù)庫的基本方法,文中介紹了連接PostgreSQL數(shù)據(jù)庫,以及增刪改查,需要的朋友可以參考下2023-09-09

