修改Task05的笔误

This commit is contained in:
Relph1119 2023-06-27 14:03:36 +08:00
parent dc746d866d
commit 4556a4b353
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# 3编程习惯养成与思维 # 3 编程习惯养成与思维
## 3.1 防御性编程与备注 ## 3.1 防御性编程与备注
@ -26,7 +26,7 @@ while i<x:
1. 选择一个可以计数的变量Choose variable that "count" 1. 选择一个可以计数的变量Choose variable that "count"
2. 在程序外部初始化它Initiative outside the loop 2. 在程序外部初始化它Initiative outside the loop
3. 需要设置正确的最终测试Setup and test 3. 需要设置正确的最终测试Setup and test
4. 构建代码块Conctract block 4. 构建代码块Contract block
5. 当结束并完成后,该如何去做 What to do when done 5. 当结束并完成后,该如何去做 What to do when done
### 代码效率 ### 代码效率