Configparser and string with %
If you don't want environment variable substitution, then use RawConfigParser, not ConfigParser.
Write two %
:
V = ('%%', 'MHz', 'GHz')
result:
('%', 'MHz', 'GHz')
If you don't want environment variable substitution, then use RawConfigParser, not ConfigParser.
Write two %
:
V = ('%%', 'MHz', 'GHz')
result:
('%', 'MHz', 'GHz')