이진영

exit

Showing 1 changed file with 4 additions and 1 deletions
x = input('Enter a word')
import os
x = input('Enter a word\n')
if x == 'exit':
os._exit(1)
print(x)
......