File Processing in Python
File Types: Two major types of files that are stored on a computer Text Files Binary Files Text Files Contains lines of characters. Each line ends with of EOL (End Of Line) character. In Python, a common EOL character is \n. A text file can be read by a program like notepad. Binary Files All… Continue reading File Processing in Python