摘要:
参考 https://www.runoob.com/python3/python3-class.html #class 类有一个名为 init() 的特殊方法(构造方法),该方法在类实例化时会自动调用,像下面这样: #双下划线 class Complex: def __init__(self, re 阅读全文
摘要:
#形如 def func(): print("hello") return 0 #可选 不添加return时用空行表示结束 #参数 def func(v="默认值") : #默认值 print(v) func() func(4) 默认值 4 看起来是空的,但实际是有值的对象 def func(myl 阅读全文
摘要:
运算符 参考 https://www.runoob.com/python3/python3-basic-operators.html & https://www.runoob.com/python3/python3-loop.html 运算符优先级: // 取整除 - 向下取接近除数的整数 >>> 阅读全文