==================== Data types: Overview ==================== .. index:: template for authors .. |a| image:: /images/all/python-basics/data_types-100.png Objectives ========== .. tabularcolumns:: | c | l | :border: none +-------+-------------------------------------------------------------------------+ | |a| | Python provides a set of data types. As a supplement and for a quick | | | entry, a brief introduction to each data type, and some other topics | | | will be provided. | +-------+-------------------------------------------------------------------------+ Instructions ============ :Tasks: 1. Have a look to the standard documentation in addition to the given examples. 2. Execute the example in the next chapters. Do not forget to create variations. Numbers ------- - Integer - Float - Long - Complex Sequences --------- - :ref:`Strings ` - :ref:`Tuple ` - :ref:`Lists ` Mappings/Collections -------------------- - :ref:`Dictionary ` - Set Tecniques useful for different data types ----------------------------------------- - :ref:`Slicing ` - :ref:`Modulo-Operator (string formatting or interpolation operator) ` - :ref:`Modulo: the remainder is important `