4 lines
108 B
Python
4 lines
108 B
Python
import sys
|
|
def handler(event, context):
|
|
return 'Hello from AWS Lambda using Python' + sys.version + '!'
|