Movatterモバイル変換


[0]ホーム

URL:


Open In App
Next Article:
Python print() function
Next article icon

The Python open() function is used to open internally stored files. It returns the contents of the file as Python objects.

Python open() Function Syntax

The open() function inPython has the following syntax:

Syntax:open(file_name, mode) 

Parameters:

file_name: This parameter as the name suggests, is the name of the file that we want to open.

mode:This parameter is a string that is used to specify the mode in which the file is to be opened. The following strings can be used to activate a specific mode:

  • "r": This string is used to read(only) the file. It is passed as default if no parameter is supplied and returns an error if no such file exists.
  • "w":This string is used for writing on/over the file. If the file with the supplied name doesn't exist, it creates one for you.
  • "a":This string is used to add(append) content to an existing file. If no such file exists, it creates one for you.
  • "x":This string is used to create a specific file.
  • "b": This string is used when the user wants to handle the file in binary mode. This is generally used to handle image files.
  • "t":This string is used to handle files in text mode. By default, the open() function uses the text mode.

How to open a file in Python?

InPython, we can open a file by using the open() function already provided to us by Python. By using the open() function, we can open a file in the current directory as well as a file located in a specified location with the help of its path. In this example, we are opening a file "gfg.txt" located in the current directory and "gfg1.txt" located in a specified location.

Python3
# opens gfg text file of the current directoryf=open("gfg.txt")# specifying the full pathf=open("C:/HP/Desktop/gfg1.txt")

open() Function in Python Examples

Let us see a few examples of the Python open() function.

Creating a Text File

The open() function in Python can be used to create a file. Here we will be creating a text file named "geeksforgeeks.txt".

Python3
created_file=open("geeksforgeeks.txt","x")# Check the fileprint(open("geeksforgeeks.txt","r").read()==False)

Output:

False

Reading and Writing the file

Here we will write the following string to the "geeksforgeeks.txt" file that we just created and read the same file again.

Geeksforgeeks is best for DSA

The below code can be used for the same:

Python3
my_file=open("geeksforgeeks.txt","w")my_file.write("Geeksforgeeks is best for DSA")my_file.close()#let's read the contents of the file nowmy_file=open("geeksforgeeks.txt","r")print(my_file.read())

Output:

Geeksforgeeks is best for DSA

Appending content to the file

Here we will append the following text to the "geeksforgeeks.txt" file and again read the same.

..>>Visit geeksforgeeks.org for more!!<<..
Python3
my_file=open("geeksforgeeks.txt","a")my_file.write("..>>Visit geeksforgeeks.org for more!!<<..")my_file.close()# reading the filemy_file=open("geeksforgeeks.txt","r")print(my_file.read())

Output:

Geeksforgeeks is best for DSA..>>Visit geeksforgeeks.org for more!!<<..

Note:The difference between "w" and "a" is that one overrides over the existing content whereas the latter adds content to the existing file keeping the content intact.


Similar Reads

We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood ourCookie Policy &Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences

[8]ページ先頭

©2009-2025 Movatter.jp