DEV Community

Discussion on: What is something that you recently learned that you wish you would have learned or understood earlier?

Collapse
 
etampro profile image
Edward Tam

Nice! Realizing the value of debugger is a great step ahead.

This is not just a Python thing. It is coding in general. Being able to play around with the context within the runtime gives you so much more insight on how a language works.

This is pretty much the very first thing I try to figure out first when I start to learn a new language.

Collapse
 
waylonwalker profile image
Waylon Walker

I am heavy user of print statement debugging. Long running commands introduced me to the debugger, post_mortem definitely has hooked me in!