diff --git a/native-datatypes.html b/native-datatypes.html index fa398a0..44b1be7 100755 --- a/native-datatypes.html +++ b/native-datatypes.html @@ -32,7 +32,7 @@ body{counter-reset:h1 2}
  • Sets are unordered bags of values.
  • Dictionaries are unordered bags of key-value pairs. -

    Of course, there are a lot more types than these seven. Everything is an object in Python, so there are types like module, function, class, method, file, and even compiled code. You’ve already seen some of these: modules have names, functions have docstrings, &c. You’ll learn about classes in Classes & Iterators, and about files in Files. +

    Of course, there are more types than these. Everything is an object in Python, so there are types like module, function, class, method, file, and even compiled code. You’ve already seen some of these: modules have names, functions have docstrings, &c. You’ll learn about classes in Classes & Iterators, and about files in Files.

    Strings and bytes are important enough — and complicated enough — that they get their own chapter. Let’s look at the others first.