Practice Test Geeks home

Python Control Flow: Conditional Statements 3

What is the output of:
x = None

if x:

print('truthy')

else:

print('falsy')

Select your answer