Is there a way to append the values to config file using configparser
?
[DEFAULT]
ServerAliveInterval = 45
Compression = yes
CompressionLevel = 9
ForwardX11 = yes
message = first run, second run, third run
I want to append message value like shown below
message = first run, second run, third run, fourth run.
Is that possible, can anyone help?