Computer Science
What signifies the end of a statement block or suite in Python ?
- A comment
- }
- end
- A line that is indented less than the previous line
Python Control Flow
70 Likes
Answer
A line that is indented less than the previous line
Answered By
3 Likes
Related Questions
Which of the following statements will make a repetition construct?
In Python, which of the following will create a block in a compound statement ?
Which one of the following if statements will not execute successfully ?
What does the following Python program display ?
x = 3 if x == 0: print ("Am I here?", end = ' ') elif x == 3: print("Or here?", end = ' ') else : pass print ("Or over here?")