Examples and code snippets from books, etc.
- Cartesian product using list comprehension: arrays/fp_example_2_4.py
- Creating, saving, and loading a large array of floats: arrays/fp_example_2_19.py
- Destructuring nested tuples using
match
/case
with optionalif
: arrays/fp_example_2_10.py - Working with a
deque
: arrays/fp_example_2_23.py
- Positional and Keyword Function Parameters: functions/fp_example_7_10.py
- Some examples of new feats in v3.12: 3_12_new_feats/
- Formatting strings: binary/format.py
- Convert hex numbers from string to bytes, and vice versa: binary/hexadecimal.py
- Bitwise operations: binary/bitwise_ops.py