As the question asks, why doesn\'t the below code work:
while True: exec(\"break\")
I am executing the above in pycharm via python 3.
Try break without exec():
while True: break