t304.py 86 B

12345
  1. # Test that min & max work on sets
  2. s = set([1,2,3])
  3. print s
  4. print min(s)
  5. print max(s)