>>> max(7,22,733,56) 733 >>> min(3,3663,8727,82) 3 >>> max('hello', 'how', 'are', 'you') 'you' >>> min('hello', 'how', 'are', 'you', 'Sir') 'Sir'