What & How & Why

差别

这里会显示出您选择的修订版和当前版本之间的差别。

到此差别页面的链接

两侧同时换到之前的修订记录前一修订版
cs:programming:python:courses:gtx_cs1301x:week_1 [2024/01/14 13:59] – ↷ 页面cs:fundamental:gtx_cs1301x:week_1被移动至cs:programming:python:courses:gtx_cs1301x:week_1 codingharecs:programming:python:courses:gtx_cs1301x:week_1 [2024/01/14 14:02] (当前版本) – ↷ 链接因页面移动而自动修正 codinghare
行 35: 行 35:
 ===What is Programming?=== ===What is Programming?===
   * Programming: Writing code through an iterative process of writing lines of code, attempting to execute them, and evaluating the results.   * Programming: Writing code through an iterative process of writing lines of code, attempting to execute them, and evaluating the results.
-{{ :cs:fundamental:gtx_cs1301x:slide11.png?400 |}}+{{ cs:programming:python:courses:gtx_cs1301x:slide11.png?400 |}}
 ==line of code== ==line of code==
   * 一行代码代表一个指令   * 一行代码代表一个指令
行 81: 行 81:
   * SyntaxError:An error that occurs when the line of code we've written can't be read by the computer because it doesn't match the computer's expectation for the programming language's grammar.   * SyntaxError:An error that occurs when the line of code we've written can't be read by the computer because it doesn't match the computer's expectation for the programming language's grammar.
 ==Reading Errors in Vocareum== ==Reading Errors in Vocareum==
-{{ :cs:fundamental:gtx_cs1301x:debugging.png |}}+{{ cs:programming:python:courses:gtx_cs1301x:debugging.png |}}
 ===Basic Debugging=== ===Basic Debugging===
   * Print Debugging:打印信息用于跟踪   * Print Debugging:打印信息用于跟踪
行 88: 行 88:
 ==print Debugging in python== ==print Debugging in python==
  
-{{ :cs:fundamental:gtx_cs1301x:print_debugging.png?400 |}}+{{ cs:programming:python:courses:gtx_cs1301x:print_debugging.png?400 |}}
 // //  // // 
   * 在 loop 开始和结束的地方添加开始和完成的信息。   * 在 loop 开始和结束的地方添加开始和完成的信息。
   * 通过打印的信息可以确定问题出在第二个 loop。   * 通过打印的信息可以确定问题出在第二个 loop。
 ==Scope Debugging in python== ==Scope Debugging in python==
-{{ :cs:fundamental:gtx_cs1301x:scope_debugging.png?400 |}}+{{ cs:programming:python:courses:gtx_cs1301x:scope_debugging.png?400 |}}
   * 首先确认不是次数的问题   * 首先确认不是次数的问题
   * 其次将累加 loop 的的范围减少为 2 次来查看是否出现了累加的问题   * 其次将累加 loop 的的范围减少为 2 次来查看是否出现了累加的问题