bin:~ progprim$ /usr/bin/python Python 2.7.10 (default, Oct 23 2015, 19:19:21) [GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.0.59.5)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> max(['One', 'Two', 'Three', 42]) 'Two' >>> range(3) [0, 1, 2] >>> range(3) [0, 1, 2] >>> range(2, 4) [2, 3] >>> ^D