Python Practice Test

โ–ถ

Python Control Flow: Conditional Statements 4

Free ยท Instant Results

What is the output of the following nested conditional? x, y = 3, 7 if x < 5: if y > 5: print('A') else: print('B') else: print('C')
โ–ถ Start Practice Test