PythonExtra/tests/io/file_long_read2.py

5 lines
65 B
Python

f = open("io/data/bigfile1")
b = f.read()
print(len(b))
print(b)