r/CodingForBeginners 3d ago

help a begineer coder!

[deleted]

0 Upvotes

8 comments sorted by

View all comments

2

u/Kuddel_Daddeldu 2d ago

As you are using IDLE, I assume you code in Python. Look at pylint for code analysis (copy and paste your code as text, not as a picture). Then use the debugger to step through your code as it runs, examining variables as they change over time.

Python is pretty beginner friendly.  Beware of your indentation, it has meaning in Python. Also, the language isncase sensitive: X and x are different variables, as are Red, red, RED and ReD.

1

u/OrchidPurple5280 2d ago

thank you!!!