- 博客(2)
- 收藏
- 关注
原创 TypeError: super(type, obj): obj must be an instance or subtype of type 该错误的一次处理
TypeError: super(type, obj): obj must be an instance or subtype of type #一次成功处理
2022-10-23 20:00:00 1113 1
原创 列表转换成生成器
列表转换成生成器A:for m in [1,2,3,4]: print('\t\t>>%s' % m)B:for m in (a for a in[1,2,3,4]): print('\t\t>>%s'%m)AB代码的执行效率在列表变得巨大的时候会不一样,用A会把列表一次性读取到内存,B一次只取一个元素C:def gen(list1): for m in list1: yield mfor m in gen([1,2,3,4
2020-05-30 19:45:28 1547
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人