Important Notice:

Course Content
File Processing in Python (Chapter-11) M3-R5
About Lesson

i. w mode:-

        file में data को input करने के लिए file को write mode में open किया जाता है यदि file पहले से बनी होती है तो पिछला data erase हो जाता है और new data write हो जाता है यदि file available नहीं है तो new file create किया जाता है और उसमें data write किया जाता है।

ii. r mode:-

         यह file को केवल read mode में open करता है ये default होता है

iii. a mode:-

           पहले से उपलब्ध file पर काम करने के लिए इस mode का प्रयोग किया जाता है। यह mode पहले से उपलब्ध data को override (erase)  नहीं करता है अर्थात बिना data remove किये वो end पर पहुँच जाता है यदि file पहले से available नही है तब new file create की जाती है।  

iv. w+ mode:-

          file को reading और writing के लिए open किया जाता है अगर file exist होती है तो उसे overwrite किया जाता है और अगर file exist नहीं होती है तो new file create की जाती है।

v. r+ mode:-

          file को reading और writing के लिए open किया जाता है इसमें previous data, file से delete नहीं होता है file pointer file के beginning में चला जाता है।

vi. a+ mode:-

           file को appending और reading के लिए open किया जाता है अगर file पहले से ही exist होती है तो बिना data remove किये वो end पर पहुँच जाता है और अगर file exist नहीं होती है तो new file create की जाती है

 

 

i. w mode:-

       To input data in the file, the file is opened in write mode. If the file is already created then the previous data is erased and new data is written. If the file is not available then a new file is created. And data is written in it.

ii. r mode:-

        It opens the file only in read mode, this is the default.

iii. a mode:-

         This mode is used to work on already available files. This mode does not override (erase) the already available data, that is, it reaches the end without removing the data. If the file is not already available then a new file is created.

iv. w+ mode:-

                  The file is opened for reading and writing. If the file exists then it is overwritten and if the file does not exist then a new file is created.

v. r+ mode:-

            The file is opened for reading and writing, the previous data is not deleted from the file, the file pointer goes to the beginning of the file.

vi. a+ mode:-

                The file is opened for appending and reading. If the file already exists then it reaches the end without removing the data and if the file does not exist then a new file is created.

error: Content is protected !!