05: Handling Files

Introduction Saving and transferring information can be difficult when done exclusively inside a program. Though it is faster, the stored data often dies with the program. A basic way around this is seen in things like Cookie files, where the browser stores some information to your computer in a RTF (Rich Text File). Let’s see how we can read and write to such files. Loading the File Python makes it pretty easy to load »