标签:div 写入 color style 技术 创建 http 图片 直接
[] 和 () 创建的列表推导式不同
lst = [i for i in range(4)]
print(lst)
print(type(lst))
gen = (i for i in range(4))
print(gen)
print(type(gen))
对 () 创建的对象进行遍历
gen = (i for i in range(4))
for i in gen:
print(i,end = " ")
print()
推导式 () 内直接写入的创建的是可迭代对象,需要遍历才能查看值
或者 next(对象) 进行查看,但是指针会对应下移一位.
[] 创建的是列表推导式,可以直接看到值
gen = (i for i in range(4))
print(next(gen))
print(next(gen))
2020-05-07
标签:div 写入 color style 技术 创建 http 图片 直接
原文地址:https://www.cnblogs.com/hany-postq473111315/p/12842366.html