摘要:
第一种情况: 输出: 30{}3029 print (user.__dict__) 是 {}呢? 原理如下: 如果user是某个类的实例,那么user.age(以及等价的getattr(user,’age’)) 阅读全文
摘要:
#__getattr__, __getattribute__ #__getattr__ 就是在查找不到属性的时候调用 from datetime import date class User: def __init__(self,info={}): self.info = info def __getattr__(self, item): ret... 阅读全文
摘要:
['bobby2', 'bobby3']['bobby'](['bobby'],)['bobby', 'bobby5'] # com2.staffs ['bobby', 'bobby5'] # com3.staffsTrue 、、、、、 com2.staffs和com3.staffs使用的同一个内存 阅读全文
摘要:
1.列表推导式书写形式: [表达式 for 变量 in 列表] 或者 [表达式 for 变量 in 列表 if 条件] 结果: [1, 4, 9, 16, 25, 36, 49, 64, 81][36, 49, 64, 81]{1: 10, 2: 20, 3: 30, 4: 40, 5: 50, 6 阅读全文
摘要:
python中的序列 可变序列 list、bytearray、array.array、collections.deque 和 memoryview。 不可变序列 tuple、str 和 bytes。 序列图 箭头指向的是父类,从图中可以看出: 1. 序列是可迭代的,继承了__iter__的方法,在系 阅读全文
摘要:
关于array: Python 本身没有数组这个说法, 有的就是list和tuple, list就具有其他语言中的数组特性. 至于list和tuple的区别,在于list可以在运行时修改内容和大小,tuple在首次创建和赋值后, 不可以再次修改内部的内容 不过python 有提供一个array模块, 阅读全文
摘要:
import bisect L = [1,3,3,5,7,9] x = 30 ##在L中查找x,x存在时返回x左侧的位置 x不存在返回应该插入的位置 x_insert_point = bisect.bisect_left(L,x) print(x_insert_point) #在L中查找x,x存在时返回x右侧的位置,x不存在返回应该插入的位置 x_insert_point = bisect... 阅读全文
摘要:
1 import numbers 2 from collections import abc 3 class Group: 4 #支持切片操作 5 def __init__(self, group_name, company_name, staffs): 6 self.group_name = group_name 7 self.co... 阅读全文