Sysモジュールにはインタプリタの管理している変数や、インタプリタの動作に関わる関数が含まれます。
argv |
byteorder |
subversion |
builtin_module_names |
copyright |
dllhandle |
excepthook |
__displayhook__ |
__excepthook__ |
exc_clear |
exc_type |
exc_value |
exc_traceback |
executable |
exit(Pythonを終了) |
exitfunc |
getcheckinterval |
getdefaultencoding |
getdlopenflags |
getfilesystemencoding |
getrefcount |
_getframe |
getwindowsversion |
hexversion |
last_type |
last_value |
last_traceback |
maxint |
maxunicode |
modules |
path |
platform |
prefix |
ps1 |
ps2 |
setcheckinterval |
setdefaultencoding |
setdlopenflags |
setprofile |
setrecursionlimit |
settrace |
settscdump |
stdin |
stdout |
stderr |
__stdin__ |
__stdout__ |
__stderr__ |
version |
version_info |
winver |
exit関数はPythonを終了させます。
exit( [ arg ] )
argにはNone、またはエラーメッセージを指定します。Noneが指定された場合、終了コードはゼロになります。None以外をした場合、そのオブジェクトはsys.stderrに出力され、終了コードは1になります。