streetyogi on Nostr: The `_` character has quite some meaning in Python: - Can be used as thousands ...
The `_` character has quite some meaning in Python:
- Can be used as thousands separator
- recalls the last value in the Python interpreter
- final clause in match statement
- prevents variables starting with _ from being imported with import *
- gettext translation function in built-in namespace
Mostly you will read that Python is easy to learn and `_` just a valid character for a variable name.
- Can be used as thousands separator
- recalls the last value in the Python interpreter
- final clause in match statement
- prevents variables starting with _ from being imported with import *
- gettext translation function in built-in namespace
Mostly you will read that Python is easy to learn and `_` just a valid character for a variable name.