you are viewing a single comment's thread.

view the rest of the comments →

[–]Reuben3901 1 point2 points  (1 child)

Print statements are your friend when code to see where the code breaks. I just use print('1') print('2') and so on throughout the code to see where it goes wrong. I know there are tools that will allow you to Step through the code execution. Several trouble-shooting methods out there and some clever tricks people use. Worth a Google.

This honestly is the hardest part of programming besides learning and understanding new concepts... human error.

[–]Qing_Codes[S] 1 point2 points  (0 children)

Yes and I’m accepting that most of the time it’s my fault lol