本 Wiki 开启了 HTTPS。但由于同 IP 的 Blog 也开启了 HTTPS,因此本站必须要支持 SNI 的浏览器才能浏览。为了兼容一部分浏览器,本站保留了 HTTP 作为兼容。如果您的浏览器支持 SNI,请尽量通过 HTTPS 访问本站,谢谢!
这里会显示出您选择的修订版和当前版本之间的差别。
两侧同时换到之前的修订记录前一修订版后一修订版 | 前一修订版 | ||
cs:programming:python:courses:gtx_cs1301x:week_1 [2024/01/14 13:59] – 移除 - 外部编辑 (未知日期) 127.0.0.1 | cs:programming:python:courses:gtx_cs1301x:week_1 [2024/01/14 14:02] (当前版本) – ↷ 链接因页面移动而自动修正 codinghare | ||
---|---|---|---|
行 1: | 行 1: | ||
+ | ======Computing====== | ||
+ | //Week 1 notes// | ||
+ | ---- | ||
+ | ====Computing==== | ||
+ | ===Vocabulary=== | ||
+ | * **Line of Code**: A single instruction for the computer to perform. | ||
+ | * **Program**: | ||
+ | * **Input**: Data that is fed into a program for it to operate upon. | ||
+ | * **Output**: What the computer provides in return after running some lines of code. | ||
+ | * **Compile**: | ||
+ | * 不能保证最后结果的正确 | ||
+ | * 分为静态(编译类)和动态(解释类) | ||
+ | * **Execution**: | ||
+ | ===Programming Languages=== | ||
+ | * 语言只是前置,了解 computing 的内在联系才是关键 | ||
+ | ===Console vs. GUI=== | ||
+ | ==Console== | ||
+ | * 所有的内容都是 text | ||
+ | ==GUI== | ||
+ | * an output medium that uses more than just text, like forms, buttons, tabs, and more. More programs are graphical user interfaces. | ||
+ | ==Computing vs. Programming== | ||
+ | * Computing 指如何 Programming | ||
+ | |||
+ | ==Code Segments== | ||
+ | * Variables | ||
+ | * Functions | ||
+ | * Reserved words | ||
+ | * Input / Output | ||
+ | ===Python=== | ||
+ | * High level | ||
+ | * 更远离底层 | ||
+ | * 更少的依赖平台和操作系统 | ||
+ | * Interpreted | ||
+ | ====Programming==== | ||
+ | ===What is Programming? | ||
+ | * Programming: | ||
+ | {{ cs: | ||
+ | ==line of code== | ||
+ | * 一行代码代表一个指令 | ||
+ | * 任务可以分解成不同的指令 | ||
+ | ==small chunks== | ||
+ | * code 应该尽量以小单位来组织 | ||
+ | ===简单的 Python=== | ||
+ | * '' | ||
+ | * python 区分大小写 | ||
+ | ===Compiling vs. Executing=== | ||
+ | * Static: | ||
+ | * the entire program is compiled before it is run | ||
+ | * prechecking the code for errors | ||
+ | * Dynamic: the lines of code are compiled and r**un one at a time**. | ||
+ | ==The Python Interactive Mode== | ||
+ | * 像计算器一样工作 | ||
+ | * 用于快速测试,获取结果 | ||
+ | * intercative mode 下,所有内容都会自动打印 | ||
+ | ===Evaluating Results=== | ||
+ | * errors | ||
+ | * incorrect results | ||
+ | ====Debuging==== | ||
+ | * 解决程序出现的 error 或是 incorrect results 的问题 | ||
+ | ===Debug 的流程=== | ||
+ | - 获取足够多的信息 | ||
+ | - 定位问题所在 | ||
+ | - 解决问题 | ||
+ | <WRAP center round box 100%> | ||
+ | // | ||
+ | </ | ||
+ | ==error type== | ||
+ | * error 分为: | ||
+ | * compilation error : Errors that occur during the computer’s read through of the code. | ||
+ | * syntax errors: 语法错误 | ||
+ | * Name errors: name 不存在 | ||
+ | * Type errors: 类型不匹配 | ||
+ | * runtime error: Errors that arise when trying to actually execute the code. | ||
+ | * Divide by zero | ||
+ | * Null errors: name exists but no value | ||
+ | * Memory Errors: code that surpasses your memory | ||
+ | ==python 的错误类型== | ||
+ | * NameError: | ||
+ | * TypeError: An error that occurs when we try to perform an operation on an object that doesn' | ||
+ | * AttributeError: | ||
+ | * SyntaxError: | ||
+ | ==Reading Errors in Vocareum== | ||
+ | {{ cs: | ||
+ | ===Basic Debugging=== | ||
+ | * Print Debugging:打印信息用于跟踪 | ||
+ | * Scope Debugging:缩小跟踪的范围,特别是 variable 在不同时期的状态变化 | ||
+ | * Rubber Duck Debugging:自己解释程序的逻辑,目标等,在解释的过程中找出 bug 的存在。 | ||
+ | ==print Debugging in python== | ||
+ | |||
+ | {{ cs: | ||
+ | // // | ||
+ | * 在 loop 开始和结束的地方添加开始和完成的信息。 | ||
+ | * 通过打印的信息可以确定问题出在第二个 loop。 | ||
+ | ==Scope Debugging in python== | ||
+ | {{ cs: | ||
+ | * 首先确认不是次数的问题 | ||
+ | * 其次将累加 loop 的的范围减少为 2 次来查看是否出现了累加的问题 | ||
+ | |||
+ | >//I call this "scope debugging" | ||
+ | <WRAP center round box 100%> | ||
+ | 没准二分法会更好一些? | ||
+ | </ | ||