Python代码练习(二):容器

时间:2024-01-27 09:04:11
【文件属性】:

文件名称:Python代码练习(二):容器

文件大小:41KB

文件格式:PDF

更新时间:2024-01-27 09:04:11

python python for循环

Python代码练习(二):容器 七月在线课程的练习题 使用循环和列表推导找出单词长度大于某个数字的单词 words = [“apple”, “banana”, “orange”, “peach”,“kiwi”] #法一: words = [apple, banana, orange, peach,kiwi] l=int(input()) # [x for x in words if len(x)>=l] for x in words: if len(x)>=l: print(x) #法二: words = [apple, ban


网友评论