-3

what is the Full form and what it is used for?

I was going through basics of python when I came across this term. what does it mean by maximum readability?

1 Answers1

1

Actually PEP8 is a document with some best practices in Python.
It helps us to improve readability and that's why it's so important.

“Code is read much more often than it is written.”
Once you’ve written it, you’re never going to write it again. But you’ll definitely have to read it again. So, you should understand it even after a long time passed. Furthermore, other people should be able to read and understand what's going on in your code. Actually, that's it.

Nowadays, there are different PEPs, but all of them have one purpose.
Moreover there is a simple guide about Zen Of Python :)

Yasuhiro
  • 11
  • 3