SunQuest
 
       Python
  Home arrow Python arrow Page 6 - Python 101 (part 3): A Twist In The Ta...
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 
VeriSign Whitepapers 
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 3): A Twist In The Tail
By: Vikram Vaswani, (c) Melonfire
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 4
    2001-06-13

    Table of Contents:
  • Python 101 (part 3): A Twist In The Tail
  • Here Comes A Hero
  • Making Friends And Influencing People
  • We Don't Need Another Hero
  • Looping The Loop
  • Twist And Turn
  • Within Range()
  • Just Passin' Through

  • 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
     
     
    ADVERTISEMENT

    Stay one step ahead of the competition. Evaluate and give feedback on some of the hottest web development tools on the market today. Make your opinion heard! Click Here

    Python 101 (part 3): A Twist In The Tail - Twist And Turn


    (Page 6 of 8 )

    In most programming languages, a "for" loop is used to execute a set ofstatements a certain number of times. Unlike a "while" loop, whichcontinues to run for so long as the specified conditional expressionevaluates as true, a "for" loop comes with a specific limit on the numberof times it can iterate.

    Python's "for" loop conforms to this basic requirement; however, as withmost things in Python, there's a twist in the tail. A Python "for" loop isdesigned only to iterate over built-in "sequence objects" like strings andlists, and is structured like this:

    for temp_var in sequence_obj: do this!
    Or, in English, "take each element of the sequence sequence_obj, place itin the variable temp_var, and execute the indented code block on temp_var".

    An example might help to make this clearer:

    >>> superheroes = ['Incredible Hulk', 'Green Lantern', 'Human Torch', 'Captain America'] >>> for myhero in superheroes: ... print myhero, "rocks!" ... Incredible Hulk rocks! Green Lantern rocks! Human Torch rocks! Captain America rocks! >>>
    In this case, I've first initialized a list containing four elements. Next,I've used a "for" loop to iterate through the list; on each successiveiteration, one element of the list is assigned to the temporary variable"myhero" and then printed to the console via a print() call. Once all theelements of the list have been processed, the loop is automaticallyterminated.

    You can use a "for" loop with any "sequence object" - this next exampledoes something similar with a string.

    >>> str = "abracadabra" >>> for char in str: ... print char, "_", ... a _ b _ r _ a _ c _ a _ d _ a _ b _ r _ a _ >>>

    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 4 hosted by Hostway