AWS - Lambda
Consider this AWS Lambda Python function:
What will be the output if the event is
def lambda_handler(event, context):
user = event.get('user', 'Anonymous')
return f"Welcome, {user}!"What will be the output if the event is
{}?