Source Code:
(back to article)
colors = {'apple': 'red', 'banana': 'yellow', 'grape': 'purple'} print(colors.get('orange')) # Returns None
Result:
Report an issue