file_long_read3.py 74 B

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