I used this feature in Groovy, so I will not repeat the blub paradox of other posters.
In Groovy, such an operator
if(possiblyNull?.value){ ...
This is in Python
try: testVar = possiblyNull.value except: testVar = None if(testVar):
This is definitely a great feature in Groovy, and it helps in removing syntax noise. There are several other bits of syntactic sugar, such as the Elvis operator or *, but they sacrifice readability as an expense for quickly correcting characters (in other words, they are not pythons).
Hope that helps :-)
hendrixski
source share