
Python
arthurlee
一名普通的软件开发人员,面对的技术太多,经常有点迷茫。
展开
-
python 2和 python 3 的差异之处
/ 操作符python 2>>> 13 / 81>>> 13 / 8.0 # 操作数必须有浮点数1.625>>>python 3(除法有小数点)>>> 13 // 8 # 整除1&gt原创 2019-02-22 12:01:23 · 220 阅读 · 0 评论 -
pythonn内置异常
BaseExceptionSystemExitKeyboardInterruptGeneratorExitExceptionStopIterationStopAsyncIterationArithmeticErrorFloatingPointErrorOverflowErrorZeroDivisionErrorAssertionErrorAttributeErro...转载 2019-02-23 14:34:46 · 290 阅读 · 0 评论