File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 44 work because they're not as simple as the things that are here and i
55 don't actually use them that much)
66
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
88used data types in Python, and there's nothing wrong with them. In this
99chapter we'll learn more data types that make some things easier. You
1010can always do everything with lists and dictionaries, but these data
Original file line number Diff line number Diff line change 468468```
469469
470470The `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
472472we just wrote, so two things are printed. Python first ran `say_hi()` ,
473473and it returned None so Python did `print (None )` . Adding an extra
474474`print ()` around a function call is actually a common mistake, and I
You can’t perform that action at this time.
0 commit comments