file_long_read2.py 65 B

1234
  1. f = open("io/data/bigfile1")
  2. b = f.read()
  3. print(len(b))
  4. print(b)