-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
Description
See https://towardsdatascience.com/6-bad-manners-makes-your-python-program-slower-15b6fce62927
- Replace 'import ' with 'from import ' where reasonable. Importing a whole module when you're using only part of it can slow things down.
- Avoid dot-dot chaining
- Use for loop, not while loop, wherever possible