摘要: s = {1,2,3,4,5,6,'sn','7'} s.remove('hellfjsdjfsjdfljsdl')#删除元素不纯在会报错 print(s) s.discard("sbbbb")#删除不存在,不会报错 print(s) 阅读全文
posted @ 2016-12-28 23:59 打不死的--蟑螂 阅读(240) 评论(0) 推荐(0) 编辑
摘要: s = {1,2,3,4,5,6,'sn','7'} s.pop()#删除随机值 print(s)#{2, 3, 4, 5, 6, '7', 'sn'} s.remove('sn')#删除值 print(s)#{1, 2, 3, 4, 5, 6, '7'} 阅读全文
posted @ 2016-12-28 23:51 打不死的--蟑螂 阅读(147) 评论(0) 推荐(0) 编辑
摘要: s = {1,2,3,4,5,6,} 进行添加数据! s = {1,2,3,4,5,6,} s.add('s')#添加字符串’s' s.add('3')#添加字符串’3' s.add(3)#添加3和字典3重合输出一个3. print(s) 阅读全文
posted @ 2016-12-28 23:47 打不死的--蟑螂 阅读(206) 评论(0) 推荐(0) 编辑
摘要: #将相同值输出,取一个值 s = set('hello') print(s) s = set(['alex','alex','sb']) print(s) 阅读全文
posted @ 2016-12-28 23:43 打不死的--蟑螂 阅读(122) 评论(0) 推荐(0) 编辑
摘要: #定义两个不同的值 python_1=['lcg','zjw','szw'] liunx =['lcg','szw','sb'] p_s=set(python_1) p_l=set(liunx) print(p_s,p_l) #交集 print(p_s.intersection(p_l))#函数:intersection print(p_s&p_l) #并集 print(p_s.union(p_... 阅读全文
posted @ 2016-12-28 23:39 打不死的--蟑螂 阅读(123) 评论(0) 推荐(0) 编辑
摘要: class Foo: def __init__(self,name): self.name=name def __getitem__(self, item): print(self.__dict__[item]) def __setitem__(self, key, value): self.__dict__[key]=va... 阅读全文
posted @ 2016-12-27 10:51 打不死的--蟑螂 阅读(272) 评论(0) 推荐(0) 编辑
摘要: class Foo: def __getitem__(self, item): print('getitem',item) return self.__dict__[item] def __setitem__(self, key, value): print('setitem') self.__dict__[key]... 阅读全文
posted @ 2016-12-27 10:35 打不死的--蟑螂 阅读(178) 评论(0) 推荐(0) 编辑
摘要: class Foo: def __init__(self,x): self.x=x def __getattr__(self, item): print("执行的是我----->") def __getattribute__(self, item): print('不管是否纯在,我都执行--------》') ... 阅读全文
posted @ 2016-12-27 10:27 打不死的--蟑螂 阅读(132) 评论(0) 推荐(0) 编辑
摘要: class Foo: pass obj = Foo() isinstance(obj,Foo) class Foo: pass obj = Foo() isinstance(obj ,Foo) print(obj) class Foo: pass class Bar(Foo): pass issubclass(Bar,Foo) print(Bar) 阅读全文
posted @ 2016-12-27 10:26 打不死的--蟑螂 阅读(92) 评论(0) 推荐(0) 编辑
摘要: class Foo: def __init__(self,x): self.x = x def __getattribute__(self, item): print('不管是否纯在,我都会执行') f1 = Foo(10) f1.x f1.xxxxxxxxxxx 阅读全文
posted @ 2016-12-27 10:26 打不死的--蟑螂 阅读(97) 评论(0) 推荐(0) 编辑