ConfigParser.InterpolationSyntaxError: ‘%‘ must be followed by ‘%‘ or ‘(‘, found: “%&‘“

Solution

Read the configuration file in another way
original code: CF = configparser. Configparser ()

Replace with:
CF = configparser. Rawconfigparser ()

Read More: