Advertisement
Guest User

Untitled

a guest
Sep 16th, 2014
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. def second_highest(num1,num2,num3):
  2.  
  3.     if num1 > num2 and num1 > num3:
  4.  
  5.         if num2 > num3:
  6.             return num2
  7.         else:
  8.             return num3
  9.  
  10. print(second_highest(752,452,21))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement