strings.org
changeset 96 3498d74ed615
parent 95 fddcfd83e4f0
child 97 25248b12f6e4
equal deleted inserted replaced
95:fddcfd83e4f0 96:3498d74ed615
     1 * Data Types
     1 * Strings
     2 *** Outline
     2 *** Outline
     3 ***** Introduction
     3 ***** Strings
     4 ******* What are we going to do?
     4 ******* basic manipulation
     5 ******* How are we going to do?
     5 ******* operations
     6 ******* Arsenal Required
     6 ******* immutability
     7 ********* None
     7 ******* string methods
       
     8 ******* split and join
       
     9 ******* formatting - printf style
       
    10 ***** Odds and Ends
       
    11 ******* dynamic typing
       
    12 ******* comments
       
    13 ***** Simple IO
       
    14 ******* raw_input
       
    15 ******* console output
       
    16 ***** Arsenal Required
       
    17 ******* lists
       
    18 ******* writing to files
     8 *** Script
    19 *** Script
     9     Welcome friends. 
    20     Welcome friends. 
    10     
    21     
    11     In this tutorial we shall look at data types available in Python and 
    22     In this tutorial we shall look at data types available in Python and 
    12     how to perform simple Input and Output operations. 
    23     how to perform simple Input and Output operations.