Basic I/O System
Explore how the Python I/O system enables communication with various data sources and destinations. Understand file reading, writing, and handling different data types including text and binary, plus file system operations like create and delete.
We'll cover the following...
We'll cover the following...
I/O System
We can expect the following from an I/O system:
-
It should allow us to communicate with multiple sources and destinations. Example sources include a keyboard, mouse, file, and network. Example destinations include a screen, printer, file, and network.
-
It should allow us to input/output various entities, for ...