File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ NameError: name 'hello' is not defined
18
18
```
19
19
20
20
Oops! That didn't work. But like I wrote in the
21
- [ introduction] ( what-is-programming.md ) , ** errors don't matter** .
21
+ [ introduction] ( what-is-programming.md ) , error messages are our friends.
22
+ This error message tells us what's wrong and where, and we'll learn what
23
+ "name 'hello' is not defined" means [ later] ( variables.md ) .
22
24
23
25
Maybe we can press Enter without typing anything?
24
26
@@ -135,7 +137,7 @@ back to `>>>` when we press Enter again.
135
137
136
138
## Summary
137
139
138
- - Errors don't matter .
140
+ - Again, error messages are your friends .
139
141
- We can enter any Python commands to the interactive ` >>> ` prompt, and
140
142
it will echo back the result.
141
143
- ` + ` , ` - ` , ` * ` and ` / ` work in Python just like in math.
You can’t perform that action at this time.
0 commit comments