dhxl50

exit function

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