Practice Test Geeks home

Python Control Flow: Conditional Statements 5

What is the output?
x = [1, 2, 3]

if x:

print('not empty')

else:

print('empty')

Select your answer