if a < b:
 flag = True
else:
 flag = False


flag = a < b
と書ける
圧倒的にすっきりするけど、なんか頭に入ってこなくなる
どっちがいいんだろ