Oct-25-2023, 08:17 AM
Hello, I don't understand why it makes sense to talk about "runtime" in Python. In Python, each line is read, interpreted, and executed one by one. So depending on how you look at it, there is either "only" runtime because there are no other phases, or there is no runtime "phase" at all because it is always immediately interrupted by the reading and interpretation phases. So, how can a runtime error, for example, occur?