AWS - Lambda
Given this Lambda function code in Python:
What is the output if the event is
def handler(event, context):
return event['key'] * 2What is the output if the event is
{"key": 5}?