Picture of the authorDevGrads

Files

Work with text or binary data stored on disk.

Example

with open("myfile.txt", "r") as file:
    contents = f.read()
    print(contents)