Add None coalescing operator in Python

I think this will be good for Python to have, since javascript and flutter and kotlin and c# has already implemented it:

a_variable = None

new_variable = a_variable ?? 'Hello Python'

assert new_variable == 'Hello Python'