AWS - Lambda
Given this AWS Lambda function code snippet in Python:
What will be the output if the event is
def handler(event, context):
return event.get('key', 'default')What will be the output if the event is
{}?