[Python]List Comprehension
Posted profesor
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Python]List Comprehension相关的知识,希望对你有一定的参考价值。
students = [("jerry", 25), ("elaine", 24), ("John", 34), ("kramer", 34)] #把年龄在30以上的学生信息提取出来 print([item for item in students if item[1] > 30]) #把年龄在30以上的学生姓名提取出来 print([item[0] for item in students if item[1] > 30]) #把名字以j(不论大小写)开头的学生信息提取出来 print([item for item in students if item[0].lower().startswith(‘j‘)])
以上是关于[Python]List Comprehension的主要内容,如果未能解决你的问题,请参考以下文章