for the following code
if x <2:
print('Below2')
elif x >=2:
print('Two or more')
else:
print ('Something else'l
what value of x will cause Somthing else to print?
Answers
Answered by
0
Answer:
there is no such values for which the output is something else
Similar questions