could someone help with this error msg? TIA
import sys
while True: print('Type exit to exit.') response = input() if response == 'exit': sys.exit() print('You typed ' + response + '.')
Like the others said, that isn't an error messages. That just means the repl process died before it thought it was supposed to. It does that to me pretty much any time I use a sys.exit() command.
repl process died unexpectedly
could someone help with this error msg? TIA
import sys
while True:
print('Type exit to exit.')
response = input()
if response == 'exit':
sys.exit()
print('You typed ' + response + '.')
Like the others said, that isn't an error messages. That just means the repl process died before it thought it was supposed to. It does that to me pretty much any time I use a sys.exit() command.