三元表示式,列表生成式,字典生成式,生成器表示式

2021-08-20 17:43:10 字數 2502 閱讀 9668

三元表示式

條件成立時的返回值 if 條件 else 條件不成立時的返回值

def max2(x,y):

if x > y:

return x

else:

return y

表示式:

x=10

y=20

res=x if x > y else y

print(res)

列表生成式##中括號生成的

l=[item**2 for item in range(1,11)]

print(l)

names=['alex','wxx','lxx']

方式一:

l=for name in names:

names=l

方式二(列表生成式):

names=[name+'sb' for name in names]

print(names)

names=['alex','wxx','egon','lxx','zhangmingyan']

方式一:

l=for name in names:

if name != 'egon':

names=l

方式二(列表生成式):

names=[name+'sb' for name in names if name != 'egon']

print(names)

##練習###

l=[item**2 for item in range(1,5) if item > 2]

print(l)

names=['egon','alex_sb','wupeiqi','yuanhao']

names=[name.upper() for name in names]

print(names)

names=['egon','alex_sb','wupeiqi','yuanhao']

nums=[len(name) for name in names if not name.endswith('sb')]

print(nums)

字典生成式:##花括號{}生成的

s1='hello'

l1=[1,2,3,4,5]

res=zip(s1,l1)  #zip拉鍊函式 裡面放的是可迭代物件

print(res)      #

print(list(res))#[('h', 1), ('e', 2), ('l', 3), ('l', 4), ('o', 5)]

keys=['name','age','***']

values=['egon',18,'male']

res=zip(keys,values)

print(list(res))    #[('name', 'egon'), ('age', 18), ('***', 'male')]

print(list(res))    #

d={}

for k,v in zip(keys,values):

d[k]=v

print(d)           #

# 字典生成式:

keys=['name','age','***']

values=['egon',18,'male']

d=print(d)

info=

keys=info.keys()

print(keys)

# iter_keys=keys.__iter__()  key,value都內建有iter方法,都是可迭代物件

values=info.values()

print(values)

d=print(d)

s=print(s,type(s))

生成器表示式##小括號『()』生成的

g=(i for i in range(10))

# print(g)

print(next(g))

print(next(g))

nums=[11,22,33,44,55]

print(max(nums))

with open('a.txt',encoding='utf-8') as f:

nums=(len(line) for line in f)       #小擴號  生成器只能取一次值

print(max(nums))

print(max(nums))          #檔案關閉了

print(max(nums))

l=['egg%s' %i for i in range(10)]

print(l)

g=('egg%s' %i for i in range(1000000000000))

# print(g)

print(next(g))    #egg0

print(next(g))    #egg1

三元表示式 列表生成式 生成器生成式

什麼是三元表示式?可以將if.else分支語句合併為一行 為什麼要使用三元表示式?三元表示式是python為我們提供的一種簡化 的解決方案 怎麼用三元表示式?res 條件成立返回的值 if 判斷條件 else 條件不成立返回的值 應用場景 不使用三元表示式方法 def max2 x,y if x y...

三元表示式,生成式

條件,條件成立返回值,不成立返回值 deffunc x,y if x y return x else return y func 1,2 等同於三元表示式 條件成立就返回左邊的值,不成立就是右邊的值 x 1 y 2 res x if x y else y print res 2def func x,...

列表生成式與三元表示式

三元表示式與列表生成式可簡寫 三元表示式 age 19 條件滿足取前面,不滿足取後面 p 成年人 if age 18 else 未成年人 print p 列表生成式 表示式 for 變數 in 列表 if 條件 out exp res for out exp in input list if con...