Sunday, September 22, 2024
Google search engine
HomeLanguagesfileinput.input() in Python

fileinput.input() in Python

With the help of fileinput.input() method, we can get the file as input and to can be used to update and append the data in the file by using fileinput.input() method.

Syntax : fileinput.input(files)

Return : Return the data of the file.

Example #1 :
In this example we can see that by using fileinput.input() method, we are able to get the data of the file line by line by using this method.

Input File –




# import fileinput
import fileinput
  
# Using fileinput.input() method
for line in fileinput.input(files ='gfg.txt'):
    print(line)


Output :

 
Example #2 :

Input Files –




# import fileinput
import fileinput
  
# Using fileinput.input() method
for line in fileinput.input(files =('gfg.txt', 'gfg1.txt')):
    print(line)


Output :

Last Updated :
22 Apr, 2020
Like Article
Save Article
Similar Reads
Related Tutorials
RELATED ARTICLES

Most Popular

Recent Comments