
Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it
alias nl n;;l alias sl s;;l # installpip install pdbpp# usageimport pdb; pdb.set_trace()
# installpip install ipdbpip install debug# usageimport ipdb; ipdb.set_trace()# orimport debug # yeah, that's it!
# installpip install pudb# usageimport pudb; pudb.set_trace()
