Pop Python quiz:
What bad thing will happen when this code is run?
Conversation
Replying to
This will cause a stack overflow, assuming Python doesn't do something to stop the program first.
1
This Tweet was deleted by the Tweet author. Learn more
I just tested it out and Python apparently catches it with a recursion error first.
1
Replying to
should be an exception with maximum recursion limit or a stack overflow. I'm not brave enough to actually try it.


