Write a program to find the median among three given number
Topic: Write a program to find the median among three given number
Solution
x=10 y=20 z=30 if y < x and x < z: print(x) elif z < x and x < y: print(x) elif z < y and y < x: print(y) elif x < y and y < z: print(y) elif y < z and z < x: print(z) elif x < z and z < y: print(z)
List all Python Programs