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 :
Please Login to comment…