Since the region is set in the environment variable ʻAWS_DEFAULT_REGION`, you can get it by accessing the environment variable in your language. In python, it looks like this:
import os
def lambda_handler(event, context):
print "REGION:" + os.getenv("AWS_DEFAULT_REGION")
You can check other environment variables that can be used from here.