Python
参考:
ドキュメント
参考:
ダウンロード
参考:
Download Python | Python.org [Official]
インストール
参考:
Python のセットアップと利用 | Python 3.x ドキュメント [公式]
チュートリアル
参考:
Python チュートリアル | Python 3.x ドキュメント [公式]
組み込み型
参考:
組み込み型 | Python 3.x ドキュメント [公式]
組み込み関数
参考:
組み込み関数 一覧 | Python 3.x ドキュメント [公式]
標準ライブラリ
参考:
Python 標準ライブラリ | Python 3.x ドキュメント [公式]
文法 (リファレンス)
参考:
Python 言語リファレンス | Python 3.x ドキュメント [公式]
リファレンス
参考:
モジュール
参考:
モジュールのインストール | Python 3.x ドキュメント [公式]
Installing Packages | Python Packaging User Guide [Official]
モジュール索引 | Python 3.x ドキュメント [公式]
PyPI | the Python Package Index [Official]
pypa/pip: The PyPA recommended tool for installing Python packages – GitHub
pip | pip (stable) documentation [Official]
入門
参考:
形式ばらない Python の紹介 | Python 3.x ドキュメント [公式]
モジュール (module) | Python 3.x ドキュメント [公式]
入力と出力 | Python 3.x ドキュメント [公式]
エラーと例外 | Python 3.x ドキュメント [公式]
仮想環境とパッケージ | Python 3.x ドキュメント [公式]
IDLE
参考:
Python の IDLE の使い方の基本 | ガンマソフト株式会社
コマンドラインオプション
コマンドラインから直接 Python 文を実行する。
$ python -c "import sys; print(sys.version)"
参考:
コマンドラインと環境 | Python 3.x ドキュメント [公式]
Command line and environment | Python 3.x documentation [Official]
コマンドライン引数
コマンドラインで与えられた引数を使うサンプル
#! /usr/bin/python import sys print(sys.argv)
コマンドラインから引数を与えて実行する。
$ python test.py hoge fuga ['hoge', 'fuga']
参考: