SlideShare a Scribd company logo
DEBUGGING WITH PDB IN
PYTHON
FAF101
@anabalica
If you don’t debug,
then either you are a code genius
or you don’t know how.
Debugging Debuggers
is the process of
finding and reducing bugs
are the tools
that help us to debug
• reproduce
• reduce
• trace
• CLI
• GUI
Debugging with pdb in Python
PDB - interactive source code
debugger for Python
import pdb; pdb.set_trace()
PDB COMMANDS
• h(elp)
• s(tep)
• n(ext)
• c(ontinue)
• l(ist)
• ll(ist)
• b(reak)
• tbreak
• p expression
• pp expression
• [!]expression
• q(uit)
python -m pdb myscript.py
Dangerous real-time coding
THANKYOU =)

More Related Content

PDF
Instrumenting Go (Gopherconindia Lightning talk by Bhasker Kode)
PPTX
Python vs c++ ppt
PPTX
Python 101 for the .NET Developer
PPTX
Python Programming
PPTX
24 Hours Later - NDC London 2014
PDF
C++ vs python the best ever comparison
PDF
The state of PyPy
Instrumenting Go (Gopherconindia Lightning talk by Bhasker Kode)
Python vs c++ ppt
Python 101 for the .NET Developer
Python Programming
24 Hours Later - NDC London 2014
C++ vs python the best ever comparison
The state of PyPy

What's hot (15)

PDF
Marconi: Queuing and Notification service for OpenStack
PPT
GO programming language
PDF
Rcpp
PPTX
Soalan chapter 5
PPTX
Runtime & Concurrency in go slides
PDF
未来につながる言語
PDF
Does reporting takes lots of time
PPTX
C++ history session 00 history
PDF
Golang 101
PPTX
Lambda The Extreme: Test-Driving a Functional Language
PPTX
Cobol, lisp, and python
PDF
Integrating R with C++: Rcpp, RInside and RProtoBuf
PPTX
Np complete
PPT
History of c++
Marconi: Queuing and Notification service for OpenStack
GO programming language
Rcpp
Soalan chapter 5
Runtime & Concurrency in go slides
未来につながる言語
Does reporting takes lots of time
C++ history session 00 history
Golang 101
Lambda The Extreme: Test-Driving a Functional Language
Cobol, lisp, and python
Integrating R with C++: Rcpp, RInside and RProtoBuf
Np complete
History of c++
Ad

More from Ana Balica (6)

PDF
[PyCon2016]To mock or not to mock, that is the questions
PDF
How to write a good commit message
PDF
DJUGL 2015 Signals and AppConfig
PDF
[EuroPython2015] Demystifying Mixins with Django
PDF
[Djangocon2015][Lightning talk] Systers
PDF
[Djangocon2015] Demystifying mixins with Django
[PyCon2016]To mock or not to mock, that is the questions
How to write a good commit message
DJUGL 2015 Signals and AppConfig
[EuroPython2015] Demystifying Mixins with Django
[Djangocon2015][Lightning talk] Systers
[Djangocon2015] Demystifying mixins with Django
Ad

Recently uploaded (20)

PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PPTX
L1 - Introduction to python Backend.pptx
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PPTX
Reimagine Home Health with the Power of Agentic AI​
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PDF
How Creative Agencies Leverage Project Management Software.pdf
PDF
Nekopoi APK 2025 free lastest update
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
medical staffing services at VALiNTRY
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PPTX
history of c programming in notes for students .pptx
PPTX
ai tools demonstartion for schools and inter college
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PPTX
Introduction to Artificial Intelligence
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PDF
top salesforce developer skills in 2025.pdf
PDF
Understanding Forklifts - TECH EHS Solution
PDF
Digital Strategies for Manufacturing Companies
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
L1 - Introduction to python Backend.pptx
Design an Analysis of Algorithms II-SECS-1021-03
Upgrade and Innovation Strategies for SAP ERP Customers
Reimagine Home Health with the Power of Agentic AI​
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
How Creative Agencies Leverage Project Management Software.pdf
Nekopoi APK 2025 free lastest update
2025 Textile ERP Trends: SAP, Odoo & Oracle
medical staffing services at VALiNTRY
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
history of c programming in notes for students .pptx
ai tools demonstartion for schools and inter college
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
Introduction to Artificial Intelligence
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
top salesforce developer skills in 2025.pdf
Understanding Forklifts - TECH EHS Solution
Digital Strategies for Manufacturing Companies

Debugging with pdb in Python