python code
import configparser
cfg = configparser.ConfigParser()
cfg.read('config.ini')
message = cfg['common']['msg']
print(message)
config.ini
[common]
msg = hi /n how are you?
output
hi /n how are you?
But I need newline instead of /n printitng
hi
how are you?