LBYL vs EAFP
Posted | archive
Look Before You Leap
if key in mapping:
return mapping[key]
Ask Forgiveness than Permission
try:
return mapping[key]
catch KeyError:
pass
Posted | archive
Look Before You Leap
if key in mapping:
return mapping[key]
Ask Forgiveness than Permission
try:
return mapping[key]
catch KeyError:
pass
Comments