find the output of
x=1
if x>3:
if x>4:
print ("A" ,end=' ')
else :
print( "B",end' ')
elif x<2:
if x!=0:
print("C",end=' ')
print (" D")
Answers
Answered by
5
Answer:
find the output of
x=1
if x>3:
if x>4:
print ("A" ,end=' ')
else :
print( "B",end' ')
elif x<2:
if x!=0:
Explanation:
If x =0
print("C",end=' ')
Else :
Print ("D", end =5)
If end.
It is a correct answer to the question
Similar questions