Quantcast
Channel: Active questions tagged python - Stack Overflow
Viewing all articles
Browse latest Browse all 23131

How to read and write INI file with Python3?

$
0
0

I need to read, write and create an INI file with Python3.

FILE.INI

default_path = "/path/name/"default_file = "file.txt"

Python File:

#    Read file and and create if it not existsconfig = iniFile( 'FILE.INI' )#    Get "default_path"config.default_path#    Print (string)/path/nameprint config.default_path#    Create or Updateconfig.append( 'default_path', 'var/shared/' )config.append( 'default_message', 'Hey! help me!!' )

UPDATED FILE.INI

default_path    = "var/shared/"default_file    = "file.txt"default_message = "Hey! help me!!"

Viewing all articles
Browse latest Browse all 23131

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>