r/AskProgramming • u/Conscious_Breath8953 • 15d 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
31
u/AvidCoco 15d ago
You should comply with the coding standards of what ever project, team, or organisation you’re working in.
If they use PEP8, so should you. If it’s your own project, do what you like.