×

Python Tutorial

Python Basics

Python I/O

Python Operators

Python Conditions & Controls

Python Functions

Python Strings

Python Modules

Python Lists

Python OOPs

Python Arrays

Python Dictionary

Python Sets

Python Tuples

Python Exception Handling

Python NumPy

Python Pandas

Python File Handling

Python WebSocket

Python GUI Programming

Python Image Processing

Python Miscellaneous

Python Practice

Python Programs

Home » Python

Python File name Property with Example

Python File name Property: Here, we are going to learn about the name Property, how to get the filename from file object in Python?
Submitted by IncludeHelp, on December 24, 2019

File name Property

name Property is an inbuilt property of File object (IO object) in Python, it is used to get the name of the file from the file object in Python.

Syntax:

    file_object.name

Parameter(s):

  • None

Return value:

The return type of this method is <class 'str'>, it returns the file name.

Example:

# Python File name Property with Example

# creating a file
file1 = open("myfile.txt", "w")

# printing the file name
print("file name is:", file1.name)

# closing the file
file1.close()

Output

file name is: myfile.txt
Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.