Best practices that improve your code by making your code much cleaner and more Pythonic. Idea comes from https://www.youtube.com/watch?v=8OKTAedgFYg&t=184s&ab_channel=PythonEngineer
- Iterate with enumerate() instead of range(len())
- Use list comprehension instead of raw for-loops
- Sort complex iterables with the built-in sorted() method
- Store unique values with Sets
- Save Memory With Generators
- Define default values in Dictionaries with .get() and .setdefault()
- Count hashable objects with collections.Counter
- Format Strings with f-Strings (Python 3.6+)
- Concatenate Strings with .join()
- Merge dictionaries with the double asterisk syntax ** (Python 3.5+)
- Simplify if-statements with if x in list instead of checking each item separately ttt