We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b72d12 commit ceaa6bfCopy full SHA for ceaa6bf
README.md
@@ -185,7 +185,7 @@ bool(-0.0)
185
186
## Collections 1 (tuple and list)
187
188
-Tuples.
+### Tuples
189
190
```python
191
# A tuple is a read-only data structure for storing collections that
@@ -233,7 +233,7 @@ fake_tuple = (42)
233
type(fake_tuple) # is an 'int' type
234
```
235
236
-Lists.
+### Lists
237
238
239
# Unlike arrays in most other languages, Python lists can store data of any type.
@@ -290,7 +290,7 @@ my_list.clear()
290
## Collections 2 (set and dictionary)
291
=======
292
293
-Sets.
+### Sets
294
295
296
# A set is an unordered collection of things without duplicates.
0 commit comments