how do I insert a question mark before every comma in a string with python? for example, the sting would be
string = 'the, quick, brown, fox, jumps, over, the lazy, dog'
print(string)
and the desired output would be
the?, quick?, brown?, fox?, jumps?, over?, the?, lazy?, dog