dhxl50

exit function

x = input("text : " )
print(x)
\ No newline at end of file
x = input("If you enter ‘exit’, the program will exit : ")
if x=="exit":
exit(0)
else:
print(x)
\ No newline at end of file
......