python-CSD-kursu/python-temel/f.read.b.py

5 lines
72 B
Python
Raw Normal View History

2023-08-26 21:56:01 +03:00
with open('test.txt', 'r+b') as f:
b = f.read(10)
print(b)