lab01
python3 -i // 在交互式运行Python文件时对其进行编辑
python3 -m doctest // 文档测试>>> positive = 28
>>> while positive: # If this loops forever, just type Infinite Loop
... print("positive?")
... positive -= 3调试技巧
Last updated
python3 -i // 在交互式运行Python文件时对其进行编辑
python3 -m doctest // 文档测试>>> positive = 28
>>> while positive: # If this loops forever, just type Infinite Loop
... print("positive?")
... positive -= 3Last updated