18.: What will be the output of the following code?
; while(6+3>10):
print( 'I am In')
else:
print('1 am out')
Answers
Answered by
1
Answer:
x = 0 a = 5 b = 5 if a > 0: if b < 0: x = x + 5 elif a > 5: x = x + 4 else: x = x + 3 else: x = x + 2 print(x)
Similar questions