"파이썬 종료하기 quit()"의 두 판 사이의 차이

13번째 줄: 13번째 줄:
import os
import os
os._exit(1)
os._exit(1)
</source>
==예시==
<source lang='console'>
root@localhost:~# cat hello.py
print('hello')
quit()
print('world')
</source>
<source lang='console'>
root@localhost:~# python3 hello.py
hello
</source>
</source>



2020년 1월 12일 (일) 16:51 판

1 개요

Python quit(), exit()
파이썬 quit(), exit()
quit()
import sys
sys.exit(0)
import os
os._exit(1)

2 예시

root@localhost:~# cat hello.py 
print('hello')
quit()
print('world')
root@localhost:~# python3 hello.py 
hello

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}