Built-in Functions

Contained in the __builtin__ module (always available)

     abs()         eval()        intern()        open()        str()
     apply()       execfile()    isinstance()    ord()         tuple()
     callable()    filter()      issubclass()    pow()         type()
     chr()         float()       len()           range()       vars()
     cmp()         getattr()     list()          raw_input()   xrange()
     coerce()      globals()     locals()        reduce()
     compile()     hasattr()     long()          reload()
     complex()     hash()        map()           repr()
     delattr()     hex()         max()           round()
     dir()         id()          min()           setattr()
     divmod()      input()       oct()           slice()
     
  • Most of these have already been covered
<<< O'Reilly OSCON 2000, Introduction to Python, Slide 120
July 17, 2000, beazley@cs.uchicago.edu
>>>