How to quit Python in RStudio IDE

>>> quit()
SystemExit: None
>>> exit()
SystemExit: None

Both fail.

If I remember correctly, Python quits with exit (not exit()), so maybe try that instead.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.