Mar-14-2020, 01:35 PM
x = 11 y = 21 z = 31 if (x == 10): if (y == 20): print 'End of Nested if Block' else : print ' End of Nested if-Else Block' else : if (y == 20): #This one i want to change print 'Elif block' else : if (z == 30): print 'End of Nested if Block' else : print ' End of Nested if-Else Block'Hello is it possible to change the if statement into elif because the flowchart that I received shows that I need elif there
pls help