ホームページ >バックエンド開発 >Python チュートリアル >事前にインポートされたパッケージを使用して Python または ipython を起動する方法。
Instead of every time you execute python or ipython, have to write "import os" or other common packages, this script will start python with these packages imported
#!/usr/bin/env bash # ------------------------------------------------------------- # Calls ipython or python3 with multiple packages imported # ------------------------------------------------------------- if [[ -z "$1" ]] || [[ -f "$1" ]]; then [[ -n "$(command -v ipython3)" ]] && EXEC="ipython3" || EXEC=python3 TMP_PY=/$TMPDIR/$EXEC.py printf "import os, re, sys, math, datetime, yaml\n" >$TMP_PY $EXEC -i $TMP_PY "$@" else python3 "$@" fi
以上が事前にインポートされたパッケージを使用して Python または ipython を起動する方法。の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。