上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: name = 'Alex li' name2 = name print('My name is',name,name2) name = 'paoche Ge' print(name,name2) 阅读全文
posted @ 2016-12-22 11:04 打不死的--蟑螂 阅读(104) 评论(0) 推荐(0) 编辑
摘要: #coding:utf-8 class A: # def test(self): # print('A') pass class B(A): # def test(self): # print('B') pass class C(A): # def test(self): # print('C') ... 阅读全文
posted @ 2016-12-22 10:28 打不死的--蟑螂 阅读(106) 评论(0) 推荐(0) 编辑
摘要: class Vehicle: Country='China' def __init__(self,name,speed,load,power): self.name=name self.speed=speed self.load=load self.power=power def run(self): ... 阅读全文
posted @ 2016-12-22 10:27 打不死的--蟑螂 阅读(128) 评论(0) 推荐(0) 编辑
摘要: class Room: tag=1 def __init__(self,name,owner,width,length,heigh): self.name=name self.owner=owner self.width=width self.length=length self.heigh=heig... 阅读全文
posted @ 2016-12-22 10:24 打不死的--蟑螂 阅读(121) 评论(0) 推荐(0) 编辑
摘要: class School: x=1 def __init__(self,name,addr,type): self.Name=name self.Addr=addr self.Type=type def tell_info(self): print('学校的详细信息是:name:%s addr:%s' %(... 阅读全文
posted @ 2016-12-22 10:23 打不死的--蟑螂 阅读(103) 评论(0) 推荐(0) 编辑
摘要: class Room: tag=1 def __init__(self,name,owner,width,length,heigh): self.name=name self.owner=owner self.width=width self.length=length self.heigh=heig... 阅读全文
posted @ 2016-12-22 10:22 打不死的--蟑螂 阅读(114) 评论(0) 推荐(0) 编辑
摘要: class Room: tag=1 def __init__(self,name,owner,width,length,heigh): self.name=name self.owner=owner self.width=width self.length=length self.heigh=heig... 阅读全文
posted @ 2016-12-22 10:20 打不死的--蟑螂 阅读(138) 评论(0) 推荐(0) 编辑
摘要: import abc class All_file(metaclass=abc.ABCMeta): @abc.abstractmethod def read(self): pass @abc.abstractmethod def write(self): pass class Disk(All_file): def re... 阅读全文
posted @ 2016-12-22 10:19 打不死的--蟑螂 阅读(87) 评论(0) 推荐(0) 编辑
摘要: name = '亲爱的' foo = lambda x:x+'朋友' sb =foo(name) print(sb) 阅读全文
posted @ 2016-12-18 09:51 打不死的--蟑螂 阅读(222) 评论(0) 推荐(0) 编辑
摘要: def calc(n): print(n) if int(n/2)== 0: return n res = calc(int(n/2)) return res calc(10) 结果: 10 5 2 1 阅读全文
posted @ 2016-12-16 17:53 打不死的--蟑螂 阅读(117) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页