СК
Size: a a a
СК
СК
Sf
K
СК
K
СК
py3
import os
read, write = os.pipe()
os.write(write, b'author huila ebanaya')
print(os.read(write, 300))
Traceback (most recent call last):
File "source_file.py", line 5, in <module>
print(os.read(write, 300))
OSError: [Errno 9] Bad file descriptor
СК
K
K
K
K
K
СК
py3
import os
read, write = os.pipe()
os.write(write, b'author huila ebanaya')
print(os.read(read, 300))
b'author huila ebanaya'
V
СК
L