Now, if you use parenthesis, then that does something completely different.
python_quiz()
will actually cause the function to run.
In this case, python_quiz() is a recursive function, ie, it calls itself.
Furthermore, there is no stopping condition.
So,