Python 3.x
$ cat ./stat_py3.py from statistics import mean, median values = input() print(f"max: {max(values)}") print(f"min: {min(values)}") print(f"average: {mean(values)}") print(f"median: {median(values)}") $ python3 ./stat_py3.py "[1,2,2,3,3,3,4,4,4,4,5,5,5,5,5]" max: 5 min: 1 average: 3.6666666666666665 median: 4
python 3 標準ライブラリ: urllib.request
import json import urllib.request def lambda_handler(event, context): url = 'http://example.com' response = urllib.request.urlopen(url) print(response.getcode()) html = response.read() print(html.decode('utf-8'))
ウェブ界隈でエンジニアとして労働活動に励んでいる @gomi_ningen 個人のブログです