Page 1 of 1

19) What will be the output of the following python code? n = 10 y = 15 X = 30 if n > 5: if y > n: a) b) c) d) e) else:

Posted: Fri Jul 01, 2022 5:39 am
by answerhappygod
19 What Will Be The Output Of The Following Python Code N 10 Y 15 X 30 If N 5 If Y N A B C D E Else 1
19 What Will Be The Output Of The Following Python Code N 10 Y 15 X 30 If N 5 If Y N A B C D E Else 1 (37 KiB) Viewed 38 times
19) What will be the output of the following python code? n = 10 y = 15 X = 30 if n > 5: if y > n: a) b) c) d) e) else: if x = 30: print("x = 30") print("x not 30") print("y less than n") else: else: print("n less than 5") y less than n x = 30 x not 30 n less than 5 No Output