Skip to content

Commit 3c1b4cc

Browse files
committed
explaining stuff better thanks kodec
1 parent f9a2e3f commit 3c1b4cc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

basics/getting-started.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ NameError: name 'hello' is not defined
1818
```
1919

2020
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).
2224

2325
Maybe we can press Enter without typing anything?
2426

@@ -135,7 +137,7 @@ back to `>>>` when we press Enter again.
135137

136138
## Summary
137139

138-
- Errors don't matter.
140+
- Again, error messages are your friends.
139141
- We can enter any Python commands to the interactive `>>>` prompt, and
140142
it will echo back the result.
141143
- `+`, `-`, `*` and `/` work in Python just like in math.

0 commit comments

Comments
 (0)