- 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 36 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:
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
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:
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