▪ Most programming errors in the beginning and even later are simple spelling mistakes.
For further actions, you may consider blocking this person and/or reporting abuse
▪ Most programming errors in the beginning and even later are simple spelling mistakes.
For further actions, you may consider blocking this person and/or reporting abuse
Jonas Scholz -
Jayaprasanna Roddam -
Tahrim Bilal -
Martins Gouveia -
Top comments (4)
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.
Correct ✌
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!
Thank you for sharing this.✌