You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
276 B
14 lines
276 B
b = bytearray(30)
|
|
f = open("io/data/file1", "rb")
|
|
print(f.readinto(b))
|
|
print(b)
|
|
f = open("io/data/file2", "rb")
|
|
print(f.readinto(b))
|
|
print(b)
|
|
|
|
# readinto() on writable file
|
|
f = open("io/data/file1", "ab")
|
|
try:
|
|
f.readinto(bytearray(4))
|
|
except OSError:
|
|
print("OSError")
|
|
|