What are common Python programming mistakes programmers do?
Answers
Surprisingly, studies reveal that most of these mistakes happen to be the side effects of common misconceptions carried from the past programming experiences. For example, while learning to code, it goes without realizing that you made a few mistakes. Sometimes, you aren’t aware that you’re committing errors and leaving gaps in your programs.
It also reflects that you are taking it easy. Whereas learning to program is a tough task, everyone will accept who’s done it.
# follow me
Hey there!!
For the newbies, there will be a lot mistakes done while writing a code in python.
You see, Python is a case-sensitive language, so if you write a lower_case instead of an upper_case or vice-versa, your whole code would be of no use and when you go back to debug, this mistake is very hard to find.
Next, most of the people do the mistakes with the indentations, which are the spaces. These indents are very crucial to the code.
There are the most common mistakes done by most of the programmers.
Hope my answer helps! :)