0
1

More than 1 year has passed since last update.

Pythonでデバッグのライブラリ

Posted at

以下の2つを使用する。
・import pdb
・pdb.set_trace()

import pdbは、ライブラリの使用宣言で、
止めたい処理のところに、pdb.set_trace()と記載する。

それで、実行するとpdb.set_trace()の前の行数までで、処理が止まり
p 変数名を実行すると、知りたい変数の値を確認できる。

0
1
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
1