Computer Science, asked by zubcha622, 10 months ago

What is a file descriptor used in Python?

Answers

Answered by nikhildixit13
0

In short, open() creates new fileobjects, os.open() creates OS-level file descriptors, and os.fdopen() creates afile object out of a file descriptor. File descriptors are a low-level facility for working with files directly provided by the operating system kernel

Similar questions