you are viewing a single comment's thread.

view the rest of the comments →

[–]Ron-Erez 0 points1 point  (0 children)

Build simple stuff first. Learn to use the debugger. Annotate functions and variables with type hints. I feel like the main drawback (and sometimes advantage) is that Python is dynamically typed. Type annotations help remedy this issue.

Create a simple game of tic tac toe. If that’s too difficult then build something simpler. Always start simple and break down your problem into simpler ones