Computer Science, asked by hiteshagarwal582, 11 months ago

what is the common structure of python compound statements?

Answers

Answered by kshitizbitu7256
13

Answer:

Compound statements typically span multiple lines and start with a one-line header ending in a colon, which identifies the type of statement. Together, a header and an indented suite of statements is called a clause. A compound statement consists of one or more clauses: <header>: <statement> <statement> ...

Answered by amankumar3239
4

A compound statement is so called because it is composed of other statements (simple and compound). Compound statements typically span multiple lines and start with a one-line header ending in a colon, which identifies the type of statement. Together, a header and an indented suite of statements is called a clause.

Similar questions