ライブラリの一覧

numpy==1.24.1
scipy==1.10.1
networkx==3.0
sympy==1.11.1
sortedcontainers==2.4.0
more-itertools==9.0.0
shapely==2.0.0
bitarray==2.6.2
PuLP==2.7.0
mpmath==1.2.1
pandas==1.5.2
z3-solver==4.12.1.0
scikit-learn==1.2.0
ortools==9.5.2237
ac-library-python
setuptools==66.0.0
cppyy==2.4.1
torch==1.13.1
polars==0.15.15
lightgbm==3.3.1
gmpy2==2.1.5
numba==0.57.0

https://img.atcoder.jp/file/language-update/language-list.html

sympy

Python を電卓として使う

色々 import したり便利関数を定義したりした python ファイルを用意する (ここでは calc.py とする)

シェルスクリプトで PYTHONSTARTUP=’calc.py’ と実行して Python インタープリタを開くと、calc.py が呼び出された状態でインタープリタが使える。

または、form calc import * と明示的に呼び出す方法もある。

メモ