sys – system specific functions¶
Functions¶
-
sys.exit([retval])¶ Raise a
SystemExitexception. If an argument is given, it is the value given toSystemExit.
Constants¶
-
sys.argv¶ a mutable list of arguments this program started with
-
sys.byteorder¶ the byte order of the system (“little” or “big”)
-
sys.path¶ a mutable list of directories to search for imported modules
-
sys.platform¶ the platform that Micro Python is running on
-
sys.stderr¶ standard error (connected to USB VCP, and optional UART object)
-
sys.stdin¶ standard input (connected to USB VCP, and optional UART object)
-
sys.stdout¶ standard output (connected to USB VCP, and optional UART object)
-
sys.version¶ Python language version that this implementation conforms to, as a string
-
sys.version_info¶ Python language version that this implementation conforms to, as a tuple of ints