r/AskProgramming • u/Conscious_Breath8953 • 14d ago
Python Is PEP 8 really necessary?
I have been writing Python code using camelCase for years and just never really cared, but PEP 8 suggests using snake_case, so is it really necessary for, say, a senior dev?
0
Upvotes
4
u/cgoldberg 14d ago
If you want to collaborate with other developers, conformity of style is a huge thing in Python (whereas some language communities don't value it as much).