개요
- Python quit(), exit()
- 파이썬 quit(), exit()
quit()
import sys
sys.exit(0)
import os
os._exit(1)
예시
root@localhost:~# cat hello.py
print('hello')
quit()
print('world')
root@localhost:~# python3 hello.py
hello
root@localhost:~# echo $?
0
root@localhost:~# cat hello255.py
print('hello')
quit(255)
print('world')
root@localhost:~# python3 hello.py
hello
root@localhost:~# echo $?
255