Python3 File Io
# Python3.x Python File IO
[ Python3 Examples](#)
The following code demonstrates basic Python file operations, including open, read, write:
Python with keyword reference: [
## Example (Python 3.0+)
# Filename : test.py# author by : www..com# Write a file with open("test.txt", "wt")as out_file: out_file.write("This text will be written to the filen See me!")# Read a file with open("test.txt", "rt")as in_file: text = in_file.read()print(text)
Executing the above code produces the output:
This text will be written to the fileSee me!
[ Python3 Examples](#)
YouTip