摘要: 1 import time 2 true_time=time.mktime(time.strptime('2017-09-11 08:30:00','%Y-%m-%d %H:%M:%S')) 3 time_now=time.mktime(time.strptime('2017-09-12 11:00:00','%Y-%m-%d %H:%M:%S')) 4 dif_time=time_now-tr... 阅读全文
posted @ 2017-10-29 21:32 wangmo 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 1 class Square: 2 def __init__(self,length): 3 self.length = length 4 5 def perimeter(self): 6 return 4*self.length 7 8 def area(self): 9 return self.le... 阅读全文
posted @ 2017-10-29 21:24 wangmo 阅读(805) 评论(0) 推荐(0) 编辑
摘要: 角色: 学校、学员、课程、讲师 要求: 1. 创建北京、上海 2 所学校 2. 创建linux , python , go 3个课程 , linux\py 在北京开, go 在上海开 3. 课程包含,周期,价格,通过学校创建课程 4. 通过学校创建班级, 班级关联课程、讲师 5. 创建学员时,选择学 阅读全文
posted @ 2017-10-29 20:59 wangmo 阅读(1248) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/Eva-J/articles/7293890.html 阅读目录 楔子 面向过程vs面向对象 初识面向对象 类的相关知识 对象的相关知识 对象之间的交互 类命名空间与对象、实例的命名空间 类的组合用法 初识面向对象小结 面向对象的三大特性 继承 多态 封 阅读全文
posted @ 2017-10-29 20:58 wangmo 阅读(115752) 评论(6) 推荐(8) 编辑