Difference between revisions of "How to use while & for loops"

From CompSciWiki
Jump to: navigation, search
Line 16: Line 16:
 
== Sample programs==
 
== Sample programs==
 
<li>for loop example
 
<li>for loop example
 +
<li> This program prints out all lower case alphabets
 
{{CodeBlock
 
{{CodeBlock
 
|Code=####################################
 
|Code=####################################
Line 27: Line 28:
  
 
<li>while loop example
 
<li>while loop example
The program below illustrates how to use while loop
 
 
 
{{CodeBlock
 
{{CodeBlock
 
|Code=############################################
 
|Code=############################################
# Ensures that the user enters either of the  
+
# This program ensures that the user enters either of the  
 
# characters (a, b or c)
 
# characters (a, b or c)
  

Revision as of 07:17, 4 April 2012

COMP 1010 Home > Back to Extra Labs

Introduction

In this program, you will be learn how to use while and for loop control structures in Python.

while and for loops syntax in Python:

while (expression):

  Statement(s)

for iterating_var in sequence:

  Statement(s)

The two sample programs shown below does the following shows

Sample programs

  • for loop example
  • This program prints out all lower case alphabets
     ####################################
    #Prints out all lower case alphabets
    
    letter = 'a'
    for i in range (0,26):
        print letter
        letter  = chr(ord(letter) + 1) 
  • while loop example
     ############################################
    # This program ensures that the user enters either of the 
    # characters (a, b or c)
    
    ## Gets input from th user
    message = raw_input("Please enter a, b, or c: ")
    
    while(message != "a" and message != "b" and message != "c"):
        message = raw_input("Please enter a, b, or c:")
    print "You entered: " + message