I am developing a program that has a settings window in which I can change various parameters for my program. What is the best way to read/save them in some kind of config f
The Python standard library includes the ConfigParser module, which handles ini-style configuration files for you. It's more than adequate for most uses.