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 + '.')
I think it's supposed to do that.
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 + '.')
I think it's supposed to do that.