We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b2f35e commit a03e9a0Copy full SHA for a03e9a0
README.md
@@ -359,11 +359,13 @@ getsizeof(...)
359
360
4. A **_scope_** is a section where a namespace is directly accessible, for example, `dir()` shows the current namespace scope.
361
362
-5. Dot notations ('.') are used to access in-direct namespaces:
363
- sys.version_info.major
364
- p.x
365
- "Hello".__add__(" World!")
+5. Dot notations ('.') are used to access in-direct namespaces. Some examples:
366
+```python
+ >>> sys.version_info.major
+ p.x
367
+ >>> "Hello".__add__(" World!")
368
+```
369
6. It's better not to overwrite builtin names with custom ones, unless there is a strong reason to do so.
370
371
**NOTE:**
0 commit comments