Advertisement
simeonshopov

Min method (functions/book)

Nov 14th, 2019
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. def get_min(*arg):
  2.   result = min(arg)
  3.   print(result)
  4.  
  5. num1 = int(input())
  6. num2 = int(input())
  7. num3 = int(input())
  8.  
  9. get_min(num1, num2, num3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement