Python Foundations - Assessments

26 / 54

Visualize the Conditional

We can better visualize the the conditional by using the flowchart for this code,

 if x == y:
    print('x and y are equal')
else:
    if x < y:
        print('x is less than y')
    else:
        print('x is greater than y')

Visual description of conditional

The outer conditional has two branches. The second branch contains another if statement, which has two branches of its own. Those two branches are both simple statements, although they could have been conditional statements as well.


No hints are availble for this assesment

Answer is not availble for this assesment

Loading comments...