我是靠谱客的博主 高高台灯,最近开发中收集的这篇文章主要介绍列表生成式,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

有使用循环生成列表太麻烦,可以用列表生成式,只用一行语句生成列表。[x*x for x in range(4)]>>>[0, 1, 4, 9]

 

for后面还可加上if语句, 

>>>L = ['Hello', 'World', 18, 'Apple', None]
>>> a = [i for i in L if isinstance(i,str)]
>>> a
['Hello', 'World', 'Apple']


isinstance()是python内建函数,可以判断一个变量的类型

>>> isinstance('hello',str)
True
>>> isinstance(123,str)
False

>>> isinstance(123,int)

True

 >>>d = {'name':'lee','gender':'male','age':21}
>>> isinstance(d,dict)
True


列表生成式可以同时使用两种变量甚至更多:

>>> d = {'gender': 'male', 'name': 'lee'}
>>> [k + '=' + v for k,v in d.items()]
['gender=male', 'name=lee']


还可以使用两种循环,生成全排列。

>>> [m + n for m in 'ABC' for n in 'XYZ']
['AX', 'AY', 'AZ', 'BX', 'BY', 'BZ', 'CX', 'CY', 'CZ']










最后

以上就是高高台灯为你收集整理的列表生成式的全部内容,希望文章能够帮你解决列表生成式所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(34)

评论列表共有 0 条评论

立即
投稿
返回
顶部