tup = (100, 200, 300)print(max(tup))print(max(tup))print(min(tup))num_list = [25, 35, 45, 55]num_tuple = tuple(num_list)print(num_tuple)
Standard input is empty
300 300 100 (25, 35, 45, 55)
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!