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