Open In App

fileinput.filename() in Python

Last Updated : 22 Apr, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

With the help of fileinput.filename() method, we can get the last used file name which we have used so far by using fileinput.filename() method.

Syntax : fileinput.filename()

Return : Return the last used file name.

Example #1 :
In this example we can see that by using fileinput.filename() method, we are able to get the last used file name by using this method.




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


Output :

Example #2 :




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


Output :


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads