215k views
2 votes
Python uses _________________ to express the block structure of a program.

2 Answers

4 votes

Answer:

indentation

Step-by-step explanation:

Python uses indentation to express the block structure of a program. Unlike other languages, Python does not use braces, or other begin/end delimiters, around blocks of statements; indentation is the only way to denote such blocks. Each logical line in a Python program is indented by the whitespace on its left.

User Connor Doyle
by
7.1k points
3 votes

Answer:

Indentation

Step-by-step explanation:

The Python programming language uses indentation to delimit blocks. However, C++ and Java use the curly braces, "{" and "}," as the block delimiter.5 Mar 2020

User Ni
by
7.0k points