# Day 13: Debugging - How To Find and Fix Errors in Your Code

## Today's Lesson
This write-up is going to be VERY short. Just want to note some of the tips and tools Angela mentioned.

#### General Tips

There were a few general tips she mentioned that always come in handy when debugging:

<ul>
<li>Descripe the problem</li>
<li>Reproduce the bug</li>
<li>Evaluate each line</li>
<li>Utilize print()....a lot lol</li>
<li>Using an actual Debugger</li>
</ul>

I won't go into the details of each but I have some other resources bookmarked if needed.

#### The Debugger
The Debuggers she recommended were Thony (desktop app) and Python Tutor (https://pythontutor.com/). I downloaded Thony but didn't seem to be working for me (most likely not doing something correct on my end) so I used PT. Also, PT shows a visualization along with the step-by-step of the program.

Screenshot: 
![Screen Shot 2022-09-21 at 9.52.09 PM.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1663815156953/cRvyKqgwz.png align="left")

## EOD
Like I said, very short write up but I did learn a few good tips for debugging.

#### If you want to keep up with my progress or just want to connect as peers, check out my social links below and give me a follow!
﻿
<ul>
<li><a href="https://twitter.com/RingoMandingo93" target="_blank">🐦 Twitter</a></li>
<li><a href="https://github.com/kdleonard93" target="_blank">💻 Github</a></li>
<li><a href="https://discord.com/users/407639833146818570" target="_blank">👾 Discord</a></li>
<li><a href="https://www.linkedin.com/in/kyle-leonard93/" target="_blank">👔 LinkedIn</a></li>
</ul>

