About Lesson
Reading character data from the text file:-
Files से data को read करने के लिए निम्न functions का प्रयोग किया जाता है-
The following functions are used to read data from files-
i. read():-
इससे फाइल की सभी data को read किया जाता है
With this, all the data of the file is read.
ii. read(n):-
इससे फाइल में n character को read किया जाता है
With this, n characters are read in the file.
iii. readline():-
इससे फाइल की केवल एक लाइन को read किया जाता है
With this, only one line of the file is read.
iv. readlines():-
इससे फाइल की सभी लाइन को read किया जाता है
With this, all the lines of the file are read.