首页->python程序设计
表达式 list(filter(None, [0,1,2,3,0,0])) 的值为_________。
答:([1, 2, 3])
更多python程序设计试题
- 1以下程序的输出结果是:()
lcat =[“狮子”,“猎豹”,“虎猫”,“花豹”,“孟加拉虎”,“美洲豹”,“雪豹”]
for s in lcat:
if “豹” in s:
print(s,end="")
continue
- 2已知x为非空字符串,那么表达式 ”.join(x.split()) == x 的值一定为True。
- 3下面代码的输出结果是s =[“seashell”,“gold”,“pink”,“brown”,“purple”,“tomato”]print(s[4:])、
- 4以下不是Python组合数据类型的是( )。
- 5字典可以作为集合的元素。