culTest

    One of the 50 questions in this topic

    How much do you know about Python?

    What does indentation represent in Python?

    Answers

    It is purely aesthetic and does not affect the code
    Define blocks of codeCorrect
    Indicates comments in the code
    Determine the speed of execution

    In Python, indentation defines blocks of code, unlike other languages ​​that use braces {} or keywords. This feature makes the code more readable and consistent, but it also means that spaces and tabs have syntactic meaning. A common beginner mistake is mixing tabs and spaces, which can cause indentation errors.