python3 でディレクトリがなければ作る

exist_ok を使うことで 1行にまとめることができる

os.makedirs("作りたいディレクトリ", exist_ok=True)

例えば以下の通り

os.makedirs("~/.ssh/", exist_ok=True)