摘要:
"""1、什么是异常 异常是错误发生的信号,一旦程序出错就会产生一个异常 如果该异常没有被处理,该异常就会被抛出来,程序的运行随即终止 如图: 异常常用种类 AttributeError 试图访问一个对象没有的树形,比如foo.x,但是foo没有属性xIOError 输入/输出异常;基本上是无法打开 阅读全文
摘要:
property的应用 # 例1# class People:# def __init__(self, name, height, weight):# self.name = name# self.height = height# self.weight = weight## @pro 阅读全文
摘要:
例1:非菱形继承,经典类与新式类的属性查找顺序都一样# class E:# # def test(self):# # print('from E')# pass## class F:# def test(self):# print('from F')### class B(E):# # def te 阅读全文
摘要:
八 包介绍 1、什么是包? #官网解释Packages are a way of structuring Python’s module namespace by using “dotted module names”包是一种通过使用‘.模块名’来组织python模块名称空间的方式。#具体的:包就 阅读全文
摘要:
常用模块学习 时间模块 import time 一:时间有三种格式(*) 1、时间戳:秒数=>用于时间计算 # start=time.time()# print(start,type(start)) 2、格式化的字符串=>用于显示给人看 # res=time.strftime("%Y-%m-%d 阅读全文