a = [1, 2, 3, 4, 5, 6, 7, 8]l=[i**2 for i in a if i**2>=16] #列表推导式+if判断print(l)print(type(l)) b={1:1,2:2,3:3}d={i**2 for i in b }print(d) #输出的是一个集合print(type(d)) c=(1,2,3,4,5) #元组,输出的是生成器t=(i**2 for i in c)print(t)print(type(t)) d1={1,2,3,4,5,6} #集合s…