python
ljjdreamer
学习只是我的兴趣,喜欢解决问题,并享受突破障碍的喜悦
展开
-
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 · 1548 阅读 · 0 评论