File Handling In Python
How to open a file?
f = open("test.txt") # open file in current directory
f = open("C:/Python33/README.txt") # specifying full path
How to close a file Using Python?
How to write to File Using Python?
How to read files in Python?
Tell & Seek
Readline
Last updated