home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / p / python / pyhtmldoc / t / type_objec < prev    next >
Text File  |  1996-11-14  |  666b  |  13 lines

  1. <TITLE>Type Objects -- Python library reference</TITLE>
  2. Next: <A HREF="../t/the_null_object" TYPE="Next">The Null Object</A>  
  3. Prev: <A HREF="../c/code_objects" TYPE="Prev">Code Objects</A>  
  4. Up: <A HREF="../o/other_built-in_types" TYPE="Up">Other Built-in Types</A>  
  5. Top: <A HREF="../t/top" TYPE="Top">Top</A>  
  6. <H3>2.1.7.6. Type Objects</H3>
  7. Type objects represent the various object types.  An object's type is
  8. accessed by the built-in function <CODE>type()</CODE>.  There are no special
  9. operations on types.  The standard module <CODE>types</CODE> defines names
  10. for all standard built-in types.
  11. Types are written like this: <CODE><type 'int'></CODE>.
  12. <P>
  13.