0% found this document useful (0 votes)
21 views1 page

100 Skills To Better Python - Aditya Prasanna 64

The sys module allows interacting with stdin, stdout, and stderr, and accessing command line arguments passed to a Python script through sys.argv.

Uploaded by

Kabir West
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
21 views1 page

100 Skills To Better Python - Aditya Prasanna 64

The sys module allows interacting with stdin, stdout, and stderr, and accessing command line arguments passed to a Python script through sys.argv.

Uploaded by

Kabir West
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

4.

The sys module:


The sys module allows you to use stdin() and stdout(), as well as stderr(), but,
most interestingly, we can utilize sys.argv(). The idea of sys.argv is to allow you
to pass script arguments through to Python from the command line.

You might also like