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:- इसका उपयोग सीधे कमांड लाइन से इनपुट प्राप्त करने के लिए किया जा सकता है।