Important Notice:

Course Content
The Calendar Module
Library Function/Predefined Functions
0/4
Sys Module
Library Function/Predefined Functions
0/2
OS Module
Library Function/Predefined Functions
0/2
Functions in Python (Chapter-10) M3-R5
About Lesson

Sys Module

                 यह module command line arguments को process करने में अहम् भूमिका निभाता है। Command line arguments sys module के argv attribute में list के रूप में store किये जाते है।

>>> import sys

>>> print(sys.argv)

           Sys module में error output redirection और program termination के लिए भी attributes होते है।

  • stdin

  • stdout

  • stderr

stdin:-    इसका उपयोग सीधे कमांड लाइन से इनपुट प्राप्त करने के लिए किया जा सकता है।

error: Content is protected !!