Python basic Syntax-SYS module

Source: Internet
Author: User

The Python interpreter interacts with the interface

sys.argv

    • Command line arguments list, the first element is the path of the program itself
defpost ():Print('post ...')defDownload ():Print('Download ...')ifsys.argv[1]=='Post': Post ()elifsys.argv[1]=='Download': Download ()#cmd, python sys module. PY Post >>>post ...

Sys.exit (N)

    • Exit the program, exit normally (0)

Sys.version

    • Get version information for Python interpreter

Sys.maxint

    • The largest int value

Sys.path

    • Returns the search path for the module, using the value of the PYTHONPATH environment variable when initializing
Import  Time Print (Sys.path) sys.path.append () # Find the time module path, if you write the module, you need to add a path

Sys.platform

Import Sys,os if ' Win32 ' :    os.system ('dir')else:    os.system (  'ls')
    • Returns the operating system platform name, cross-platform

Sys.stdout.write (' please: ')
val = Sys.stdin.readline () [:-1]

Python basic Syntax-SYS module

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.