Wie lese und schreibe ich INI -Datei mit Python3?

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Wie lese und schreibe ich INI -Datei mit Python3?

by Anonymous » 25 Apr 2025, 09:44

Ich muss eine ini < /strong> Datei mit Python3 lesen, schreiben und erstellen.

Code: Select all

default_path = "/path/name/"
default_file = "file.txt"
< /code>

 Python -Datei: < /strong> < /p>

#    Read file and and create if it not exists
config = iniFile( 'FILE.INI' )

#    Get "default_path"
config.default_path

#    Print (string)/path/name
print config.default_path

#    Create or Update
config.append( 'default_path', 'var/shared/' )
config.append( 'default_message', 'Hey! help me!!' )
< /code>

  Aktualisiert < /em> file.ini < /strong> < /p>

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

Top