DEV Community

DDSRY
DDSRY

Posted on • Updated on

Is it bad that my errors are always spelling mistakes ?

▪ Most programming errors in the beginning and even later are simple spelling mistakes.

Top comments (4)

Collapse
 
shubhamkhandare profile image
Shubham Khandare

Using proper IDE with plugins can help you.
For python, you can use Pycharm (which is free) which will give the proper warning for most of these mistakes beforehand.
Then explore more features like code inspection and formatting.

Collapse
 
ddsry21 profile image
DDSRY

Correct ✌

Collapse
 
moopet profile image
Ben Sinclair

It's not bad, but your editor or IDE should help a lot with this. If it's a keyword, then it'll be highlighted somehow, and if it's a variable name then most IDEs will indicate you got something wrong by flagging it as "unused"... because wherever else you used it you spelt it differently!

Collapse
 
ddsry21 profile image
DDSRY

Thank you for sharing this.✌