Hello, group! <code> >>> di={} >>> di["test"]=None >>> s="%(test)s" % di >>> s 'None' </code> I want the result to be just empty string when the dictionary value is None. Is there a good way? TIA. Sam