If the value is None, I\'d like to change it to \"\" (empty string).
I start off like this, but I forget:
for k, v in mydict.items(): if v is Non
Comprehensions are usually faster, and this has the advantage of not editing mydict during the iteration:
mydict
mydict = dict((k, v if v else '') for k, v in mydict.items())