python之列表詳解

2022-09-22 03:15:08 字數 725 閱讀 3262

一組資料的集合,可以重複,

集合不可以重複

列表的定義

a=list(a)

常用操作

特殊用法

a=[x for x in range(0,30)]

b=[x for x in range(0,30) if x%2==0]

print(a)

print(b)

# 取交集

c=set(a).intersection(set(b))

print('交集1')

print(c)

c=[x for x in a if x in b]

print('交集2')

print(c)

# 取並集

c=set(a).union(set(b))

print('取並集')

print(c)

# 取差集

# 方法一1

c=[x for x in a if x not in b] #取差集

print('差集1')

print(c)

# 方法2

c=set(a).difference(set(b))#在a不在b

print('c2')

print(c)

c=set(b).difference(set(a))#在b不在a

print('c3')

print(c)

python之列表操作

列表操作功能彙總 print 列表操作功能彙總 list demo first second thrid fourth 複製list demo列表取名list list list demo print 原列表為 list print print 輸出列表第乙個元素 list 0 print 輸出列表...

Python入門之列表

python中的列表類似於c語言中的陣列,下面通過例項說明介紹幾種常用的使用方法。1.空列表的建立 empty print empty 2.列表中元素的檢視 words a b c print words 2 c print words 3 traceback most recent call la...

python之列表篇

新的資料型別閃亮登場啦 列表,下面介紹一些和列表相關的概念和其相關用法 序列是python中最基本的 種資料結構。於儲存 組有序的資料,所有的資料在序列當中都有 個唯 的位置 索引 並且序列中的資料會按照新增的順序來分配索引 資料結構指計算機中資料儲存的 式 可變序列 序列中的元素可以改變 例如 列...