Python で引数を取得する方法 2022-02-09 00:00 tech python import sys args = sys.argv if len(args) == 1: print("引数が足りません") exit print(args[1]) 毎回忘れるのでメモ。