日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

type python3_详解Python3中的Sequence type的使用

發布時間:2025/3/19 python 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 type python3_详解Python3中的Sequence type的使用 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

其實本來是要reverse一下list的,就去查了一下list[::-1]是什么意思,發現還有很多要注意的地方,所以就記一下。

主要是參照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中參數是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:

總結

以上是生活随笔為你收集整理的type python3_详解Python3中的Sequence type的使用的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。