LoginSignup
0
0

More than 3 years have passed since last update.

python勉強メモ①

Posted at

今日から自己学習の為に学んだ内容をメモしていきます。
※さぼり防止の自己満足メモです。

▼下記 cmd にて実施する ※Windowsの場合。今回は10使用
・python起動方法
cmdにて「py.exe」を入力

・pythonの起動バージョン確認
python -m pip -V

・pipのインストール
python -m pip install <パッケージ名>

・現在インストールされているpip確認
python -m pip freeze
python -m pip list

・パッケージの検索
python -m pip search <パッケージ名>

・pipアップグレード
python -m pip install --upgrade pip

▼ライブラリ
pep8 ⇒ ガイドラインに準拠しているかどうかチェック
pyflakes ⇒ 文法の誤りや不要な import 文など無駄なコードも検出
pytest-pep8 ⇒ pep8より見やすくまとめて詳細に表示してくれる

https://docs.python.org/ja/3/library/index.html
☆おすすめ
↓いつも隣にITのお仕事
https://tonari-it.com/python-standard-module-import/

↓CSV書き出し系
https://stjun.hatenablog.com/

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0