13
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

pythonの文法チェック

Posted at

pythonより先にperlに触れておりまして
perl -cw hoge.pl
のようにオプションを付けてチェックするようなものを望んだがデフォルト環境ではない様子。

sudo pip install pyflakes
sudo pip install pep8

上記をインストールして
pyflakes hoge.py
pep8 hoge.py

でチェックできます。
pyflakesの方は動作がエラーになるような部分の文法チェックや使ってないモジュールを教えてくれる。
pep8の方はpep8のコーディングルール通りかのチェックを行う。

何行目何文字目かまで指摘してくれるのでソコをこつこつと修正を。

参考先サイト様
http://d.hatena.ne.jp/tell-k/20110425/1303745312

13
14
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
13
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?