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 fileinputimport fileinput # Using fileinput.input() methodfor line in fileinput.input(files ='gfg.txt'): print(line) |
Output :
Example #2 :
Input Files –

# import fileinputimport fileinput # Using fileinput.input() methodfor line in fileinput.input(files =('gfg.txt', 'gfg1.txt')): print(line) |
Output :



.png)