InterviewSolution
Saved Bookmarks
| 1. |
What is PEP 8 and why is it important? |
|
Answer» PEP stands for Python Enhancement PROPOSAL. A PEP is an official design document providing information to the Python community, or describing a new FEATURE for Python or its processes. PEP 8 is ESPECIALLY IMPORTANT since it documents the style guidelines for Python Code. Apparently contributing to the Python open-source community REQUIRES you to follow these style guidelines sincerely and strictly. |
|