culTest

    One of the 50 questions in this topic

    How much do you know about Python?

    What is PEP 8?

    Answers

    A version of Python
    A style guide for Python codeCorrect
    A standard library module
    A web framework

    PEP 8 (Python Enhancement Proposal 8) is the official style guide for Python code, written by Guido van Rossum. Establishes conventions for indentation, line length, variable naming, comments, and other formatting aspects. Following PEP 8 improves the readability and consistency of the code, facilitating collaboration. Tools like flake8, pylint or black help to verify or automatically apply these conventions.