课程链接:https://www.udemy.com/course/100-days-of-code/
英文 | 音标 | 中文 |
indent | /ɪnˈdent/ | v. 缩进 |
unexpected indent | 意外的缩进 | |
indentation | /ˌɪndenˈteɪʃn/ | n. 缩进 |
IndentationError | 缩进错误 | |
syntax | n. 语法 | |
SyntaxError | 语法错误 | |
invalid syntax | 无效的语法 | |
scroll bar | 滚动条 | |
hover | v. 悬停 | |
hover over sth | (鼠标)悬停在某处 | |
squiggly line | 曲线 | |
a whole bunch of | 一大堆 | |
a whole bunch of broken code | 一大堆写错的代码 | |
identical | adj. 完全相同的 | |
A looks pretty much identical to B | A看起来和B几乎一模一样 | |
identity | n. 相同;一致;身份;本身 | |
open parentheses | /pəˈrɛnθɪsiːz/ | 左括号——>“(” |
closing parentheses | /pəˈrɛnθɪsiːz/ | 右括号——>“)” |
prompt | /prɒmpt/ | n. 提示 |
The prompt for the user | 给用户的提示 | |
hint | /hɪnt/ | n. 提示;暗示 |
flashing cursor | 闪烁的光标 | |
solid cursor | 实心(不闪烁)的光标 | |
nested | adj. 嵌套的 | |
console | n. 控制台 | |
double quote | 双引号 | |
subscript | n. 下标 | |
dissect | vt. 剖析;仔细研究 | |
handy | adj. 方便的 | |
It will be pretty handy when you need to deal with much code in the future. | 这在将来你处理大量代码的时候会非常方便。 | |
comma | n. 逗号 | |
underscore | n. 下划线 vt. 在...下面划线;重点强调 | |
concatenate | vt. 连接;使...连续(衔接)起来 | |
You can only concatenate str (not int) to str | 你只能连接字符串和字符串(不能连接字符串和整型) | |
exponents | /ɛksˈpəʊnənts/ | n. 指数(几次方) |
multiplication | n. 乘法 | |
division | n. 除法 | |
addition | n. 加法 | |
in addition | 此外;另外 | |
subtraction | n. 减法 | |
round the number | 四舍五入 | |
single quotes | 单引号 | |
double quotes | 双引号 | |
curly braces | 花括号{ } | |
modulo operation | 取模(余)运算(a % b) | |
remainder | n. 余数 | |
the remainder of the division | 除法的余数 | |
even number | 偶数 | |
odd number | 奇数 | |
evenly | adv. 平均地;平静地 | |
evenly divisible by x | 被x整除 | |