3
(Choose 1 answer)
A. x = -22
B. x = 2.0
C. x = -2.0
D. This code will never print 'Something else' regardless of the value for 'x'
cute Stam
For the following code
if x < 2:
print('Below 2')
elif x >= 2:
print('Two or more')
else:print('Something else')