Important Notice:

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

Data Storing mode:-

                  Python programming language में file को दो mode में store किया जाता है-

  1. Text file format

  2. Binary file format

  3. CSV File

 

  1. Text file format:-

          यह human readable file होती है इसे text editor के द्वारा edit किया जा सकता है text file में data character और line के form में store होता है। जो new line से terminate होता है text file में line के termination को indicate करने के लिए EOL (end of line) character का use किया जाता है EOF की ASCII value 26 होती है सभी input function EOF character के बाद data read नहीं करते हैं।

  1. Binary file format:-

          इस file format में data जैसे image, audio, video etc. को store किया जाता है

 

 

Data Storing mode:-

                  In Python programming language, files are stored in two modes-

  1. Text file format

  2. Binary file format

  3. CSV File

 

  1. Text file format:-

           This is a human readable file, it can be edited through a text editor. In the text file, data is stored in the form of characters and lines. EOL (end of line) character is used to indicate the termination of the line in a text file which is terminated by a new line. The ASCII value of EOF is 26. All input functions do not read data after the EOF character.

  1. Binary file format:-

    This file format contains data like image, audio, video etc. is stored

error: Content is protected !!