fork download
  1. tup = (100, 200, 300)
  2. print(max(tup))
  3. print(max(tup))
  4. print(min(tup))
  5. num_list = [25, 35, 45, 55]
  6. num_tuple = tuple(num_list)
  7. print(num_tuple)
Success #stdin #stdout 0.08s 14096KB
stdin
Standard input is empty
stdout
300
300
100
(25, 35, 45, 55)