Is there a ?? operator in python like there is in C#? Which mean if the left side is Null/None then use the right side instead:
myVal = myVal ?? 1
will return 1 if myVal is Null. This is covenant for initialization, if this operator does not exist in python, what's the best way to mimic it?