Python multi-level break and continue
Python multi-level break and continue
Posted Sep 2, 2022 7:23 UTC (Fri) by NYKevin (subscriber, #129325)In reply to: Python multi-level break and continue by bartoc
Parent article: Python multi-level break and continue
I would not recommend doing relational querying by hand in Python, for three main reasons:
1. Python is slow.
2. Relational querying by hand implies relational querying in a language other than SQL, which is going to be harder to maintain since SQL is the standard language in this space.
3. Python comes with a bundled copy of SQLite, which has neither of the above problems and is ridiculously easy to set up and use.