Python
  Home arrow Python arrow Page 2 - Python 101 (part 4): Feeding The Snake
Dev Shed Forums 
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Forums Sitemap 
IBM® developerWorks 
Sun Developer Network 
Dedicated Servers 
E-Commerce Hosting 
Linux Web Hosting 
Managed Hosting 
Small Business Hosting 
Actuate Whitepapers 
Moblin 
VPS Hosting 
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
PYTHON

Python 101 (part 4): Feeding The Snake
By: Vikram Vaswani, (c) Melonfire
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 3 stars3 stars3 stars3 stars3 stars / 8
    2001-06-25

    Table of Contents:
  • Python 101 (part 4): Feeding The Snake
  • Running The Lights
  • Strange Food
  • Unbreakable
  • Looking Up The Dictionary
  • Of Keys And Locks

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
    IBM developerWorks
     
    ADVERTISEMENT

    Be the architects of evolution and help create the mobile internet future. It’s your move---enter to win here!

    Python 101 (part 4): Feeding The Snake - Running The Lights


    (Page 2 of 6 )

    I'll begin with tuples, which share most of their properties and methods with lists. In fact, they even look alike - take a look:

    Python 1.5.2 (#1, Aug 25 2000, 09:33:37) [GCC 2.96 20000731 (experimental)] on linux-i386 Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam >>> CreepyCrawlies = ("spiders", "ants", "lizards") >>> CreepyCrawlies ('spiders', 'ants', 'lizards') >>>
    As you can see, a tuple is another "container" variable, which can contain one or more values. In the example above, "CreepyCrawlies" is a tuple containing the values "spiders", "ants" and "lizards".

    Unlike lists, which are enclosed within square braces, tuples are enclosed within parentheses, with values separated by commas. The various elements of the tuple are accessed via an index number, with the first element starting at zero. So, to access the element "spiders", you would use the notation

    >>> CreepyCrawlies[0] 'spiders' >>>
    while

    >>> CreepyCrawlies[2] 'lizards' >>>
    - essentially, the tuple name followed by the index number enclosed within square braces. You'll remember this "zero-based indexing" from lists.

    Defining a tuple is simple - simply assign values (enclosed in square braces) to a variable, as illustrated below:

    >>> pasta = ("macaroni", "spaghetti", "lasagne", "fettucine") >>>
    The rules for choosing a tuple name are the same as those for any other Python variable - it must begin with a letter, and can optionally be followed by more letters and numbers. Like a list, a tuple can mix different types of elements - the following example creates a tuple containing strings, numbers, lists and even another tuple.

    >>> allMixedUp = ("ola", 67, "pink fox, yellow moon", 43534.57, [4, "four"], ("red", "blue", "green")) >>> allMixedUp ('ola', 67, 'pink fox, yellow moon', 43534.57, [4, 'four'], ('red', 'blue', 'green')) >>> allMixedUp[0] 'ola' >>> allMixedUp[2] 'pink fox, yellow moon' >>> allMixedUp[4] [4, 'four'] >>> allMixedUp[4][1] 'four' >>> allMixedUp[5][2] 'green' >>>
    It should be noted that when Python sees two or more comma-separated elements, it automatically creates a tuple for them...which means that the following code snippets are equivalent.

    >>> lights = "red", "green", "blue" >>> type(lights) >>> lights = ("red", "green", "blue") >>> type(lights) >>>
    That said, it's a good idea to always explicitly enclose your tuples within parentheses; this avoids confusion when you review your code seven years later, and also makes it easier to read.

    The type() function above is used to find out the type of a specific variable - whether string, list, tuple or little green hybrid.

    More Python Articles
    More By Vikram Vaswani, (c) Melonfire


     

       

    PYTHON ARTICLES

    - SSH with Twisted
    - Mobile Programming in Python using PyS60: UI...
    - Python: Count on It
    - Python Strings: Spinning Yarns
    - Python: More Fun with Strings
    - Python: Stringing You Along
    - Python Operators
    - Bluetooth Programming in Python: Network Pro...
    - Python Sets
    - Python Conditionals, Lists, Dictionaries, an...
    - Python: Input and Variables
    - Introduction to Python Programming
    - Mobile Programming in Python using PyS60: Ge...
    - Bluetooth Programming using Python
    - Finishing the PyMailGUI Client: User Help To...




    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 6 hosted by Hostway