File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 4
4
work because they're not as simple as the things that are here and i
5
5
don't actually use them that much)
6
6
7
- Now we know how to ues lists, tuples and dictionaries. They are commonly
7
+ Now we know how to use lists, tuples and dictionaries. They are commonly
8
8
used data types in Python, and there's nothing wrong with them. In this
9
9
chapter we'll learn more data types that make some things easier. You
10
10
can always do everything with lists and dictionaries, but these data
Original file line number Diff line number Diff line change 468
468
```
469
469
470
470
The `print (say_hi())` thing looks a bit weird at first, but it' s easy to
471
- understand. There' s a print insnde `say_hi` and there' s also the print
471
+ understand. There' s a print inside `say_hi` and there' s also the print
472
472
we just wrote, so two things are printed. Python first ran `say_hi()` ,
473
473
and it returned None so Python did `print (None )` . Adding an extra
474
474
`print ()` around a function call is actually a common mistake, and I
You can’t perform that action at this time.
0 commit comments