摘要:
## 断言 1. **含有assert关键字** 2. **语法** ```python assert condition, message 其中condition是条件,是一个布尔表达式,用于判断某个条件是否为真。 如果condition为True,则程序继续执行; 如果condition为Fal 阅读全文
摘要:
一 模块与包: 1. 模块:一个py文件,被别的py文件导入使用,这个py文件称之为模块; 右键运行,运行的这个py文件称之为脚本文件 s1.py: def add(a, b): return a + b s2.py: import s1 print(s1.add(3,4)) # 7 s1自己点右键 阅读全文