Tuesday, March 24, 2015

Basic Python Program

Basic Program

Python Variable Types

 Variables are nothing but reserved memory locations to store values. i.e when you create a variable you reserve some space in memory.

 Assigning Values to Variables

The operand to the left of the = operator is the name of the variable and the operand to the right of the = operator is the value stored in the variable. For example:

counter = 100           # An integer assignment
miles   = 1000.0        # A floating point
name    = "John"       # A string

print counter
print miles
print name

Multiple Assignment:

Python allows you to assign a single value to several variables simultaneously. For example:
a = b = c = 1
a, b, c = 1, 2, "john"

Standard Data Types:

The data stored in memory can be of many types. For example, a person's age is stored as a numeric value and his or her address is stored as alphanumeric characters. Python has various standard types that are used to define the operations possible on them and the storage method for each of them.

Python has five standard data types:
  • Numbers
    var1 = 1
    var2 = 10
     
  • String
     str = 'Hello World!'

    print str                    # Prints complete string
    print str[0]              # Prints first character of the string
    print str[2:5]          # Prints characters starting from 3rd to 5th
    print str[2:]            # Prints string starting from 3rd character
    print str * 2           # Prints string two times
    print str + "TEST" # Prints concatenated string

    This will produce the following result:
     
    Hello World!
    H
    llo
    llo World!
    Hello World!Hello World!
    Hello World!TEST

  • List
     list = [ 'abcd', 786 , 2.23, 'john', 70.2 ]
    tinylist = [123, 'john']

    print list                  # Prints complete list
    print list[0]             # Prints first element of the list
    print list[1:3]         # Prints elements starting from 2nd till 3rd
    print list[2:]           # Prints elements starting from 3rd element
    print tinylist * 2    # Prints list two times
    print list + tinylist # Prints concatenated lists

    This will produce the following result:

    ['abcd', 786, 2.23, 'john', 70.200000000000003]
    abcd
    [786, 2.23]
    [2.23, 'john', 70.200000000000003]
    [123, 'john', 123, 'john']
    ['abcd', 786, 2.23, 'john', 70.200000000000003, 123, 'john'] 
  • Tuple
    • A tuple is another sequence data type that is similar to the list. A tuple consists of a number of values separated by commas. Unlike lists, however, tuples are enclosed within parentheses.
    • The main differences between lists and tuples are: Lists are enclosed in brackets ( [ ] ) and their elements and size can be changed, while tuples are enclosed in parentheses ( ( ) ) and cannot be updated. Tuples can be thought of as read-only lists. For example:

      tuple = ( 'abcd', 786 , 2.23, 'john', 70.2  )
      tinytuple = (123, 'john')

      print tuple           # Prints complete list
      print tuple[0]        # Prints first element of the list
      print tuple[1:3]      # Prints elements starting from 2nd till 3rd
      print tuple[2:]       # Prints elements starting from 3rd element
      print tinytuple * 2   # Prints list two times
      print tuple + tinytuple # Prints concatenated lists

      This will produce the following result:

      ('abcd', 786, 2.23, 'john', 70.200000000000003)
      abcd
      (786, 2.23)
      (2.23, 'john', 70.200000000000003)
      (123, 'john', 123, 'john')
      ('abcd', 786, 2.23, 'john', 70.200000000000003, 123, 'john')
  • Dictionary
    • Python's dictionaries are kind of hash table type. They work like associative arrays or hashes found in Perl and consist of key-value pairs. A dictionary key can be almost any Python type, but are usually numbers or strings. Values, on the other hand, can be any arbitrary Python object.
          dict = {}
          dict['one'] = "This is one"
          dict[2]     = "This is two"

         tinydict = {'name': 'john','code':6734, 'dept': 'sales'}


        print dict['one']             # Prints value for 'one' key
        print dict[2]                   # Prints value for 2 key
        print tinydict                 # Prints complete dictionary
        print tinydict.keys()     # Prints all the keys
        print tinydict.values() # Prints all the values

       This will produce the following result:
   
               This is one
               This is two
               {'dept': 'sales', 'code': 6734, 'name': 'john'}
               ['dept', 'code', 'name']
               ['sales', 6734, 'john']