Difference between revisions of "CSC111 Lab 2 2015"

From dftwiki3
Jump to: navigation, search
(Challenge #6: Programmable ATM Machine)
(Single for-loops)
Line 104: Line 104:
  
 
=Single for-loops=
 
=Single for-loops=
 +
<br />
 +
==Loops using the '''range()''' function==
 +
<br />
 +
* For this section of the lab, open IDLE and create the different program sections below in the edit window, or in the Python shell window.  I am using the python shell in the examples.
  
* For this section of the lab, open IDLE and create the different program sections below in the edit window.
 
 
* Create a new program called '''lab2.py'''
 
 
<br />
 
<br />
 
<source lang="python">
 
<source lang="python">
# lab2.py
+
>>> for n in [0, 1, 2, 3]:
 
+
print( n )
for i in range( 3, 8 ):
+
 
          print( i )
+
>>> for n in range( 4 ):
+
print( n )
 +
 
 +
>>> for n in range( 1, 4 ):
 +
print( n )
 +
 
 +
>>> for n in range( -1, 4 ):
 +
print( n )
 +
 
 +
>>> for n in range( 5, 10 ):
 +
print( n )
 +
 
 +
>>> for n in range( 0, 10, 2 ):
 +
print( n )
 +
 
 +
>>> for n in range( 1, 10, 2 ):
 +
print( n )
 +
 
 +
>>> for n in range( 10, 0, -2 ):
 +
print( n )
 
   
 
   
 
</source>
 
</source>
 
<br />
 
<br />
* Verify that you get the correct output:
+
* Do you understand how the range() function works? 
  3
+
** If you give it only 1 number, it will generate a series of numbers starting at 0 and going up to that number, but not including it, in steps of 1.
   4
+
** If you give it 2 numbers, it will use the first one as the start, and the second at the stop, and will generate all the integers between the two, in steps of 1.   The stop number is never used.
  5
+
** IF you give it 3 numbers, the 3rd one is the step.  It can be positive or negative.
  6
 
  7
 
 
 
  
* Now, your turn!
 
  
;List of numbers, Version 2
+
* Now, your turn:
: Modify your loop so that it does not use the ''range( )'' function (Hint: you have to list all the values, as we did in [[CSC111 Lab 1 2015|Lab #1]].
 
  
 
; List of even numbers:  
 
; List of even numbers:  
: write a loop that prints all the even numbers between 4 and 20; 4, and 20 included (you can use range or list all the numbers).
+
: write a loop that prints all the even numbers between 4 and 20; 4, and 20 included.
  
 
;List of odd numbers:  
 
;List of odd numbers:  
 
:write a loop that prints all the odd numbers between -3 and 19, -3, and 19 included.
 
:write a loop that prints all the odd numbers between -3 and 19, -3, and 19 included.
 
;User-controlled loops (more difficult):
 
:Write a  new Python program that prints a series of numbers, after having asked the user where the series should start, and where it should end.
 
 
:Here is an example of how it should run (the user input is iunderlined):
 
 
      <U>'''Python userLoop.py'''</U>
 
 
 
      I will print a list of numbers for you.
 
 
 
      Where should I start? <u>'''3'''</u>
 
 
      What is the last number of the series? <u>'''10'''</u>
 
 
      3 4 5 6 7 8 9 10
 
 
:Go ahead and write it. What happens if you ask the program to count from -5 to 5? Does it work correctly?
 
 
:Does your program work if you ask your program to go from 1 to 1?
 
 
:Can you predict what will be printed if you ask your program to count from 10 to 1?
 
  
 
=Lists and Operations on Lists=
 
=Lists and Operations on Lists=

Revision as of 18:22, 3 February 2015

--D. Thiebaut (talk) 17:01, 3 February 2015 (EST)


This lab deals with loops in python. Feel free to work in pairs, share insights and help your neighbors during the lab. This is true of all labs. While some homework assignments will have to be done as individual work, the labs are a good time to cooperate with neighbors or work in pairs.


The input() Function


Try the following statements in the console window. Again, some of these might generate errors. It is important for you to understand why these errors occur.


>>> firstName = input( "Enter your first name: " )
>>> firstName

>>> lastName = input( "Enter your last name: " )
>>> lastName

>>> print( firstName, lastName )

>>> x = input( "enter a number: " )
>>> x

>>> x + 5

>>> x = input( "Enter a number: " )
>>> x

>>> x = int( answer )
>>> x

>>> y = int(  "314.56789" )
>>> y



Challenge #4: Gathering student information

QuestionMark4.jpg


Write a python program that asks the user for her name, box number, 99-Id number, and phone number, and that outputs it back on the screen nicely formatted.

Example (the information entered by the user is in boldface):

your first name? Allie
your last name? Gator
your box number? 1234
your phone number? 413 456 7890
your Smith Id? 990123456


Name:   Allie Gator (990123456)
box #:  1234
phone:  413 456 7890



Challenge #5: (Challenging) Printing the student information it in a box

QuestionMark5.jpg


Same idea as with the previous challenge but after inputing the information from the user, the program outputs it in a box!

Example:

Lab2 2014 boxedOutput.png





Challenge #7: Seconds to Days, Hours, Minutes, Second converter

QuestionMark8.jpg


Write a program that prompts the user for a time expressed as a number of seconds. The program then outputs the equivalent number of days, hours, minutes, and seconds.

Make the program output the result in a box, similar to the one shown below (the user input is in boldface):

Please enter a time expressed in seconds: 3662


+--------------------------------------------+
| 0 day(s) 1 hour(s) 1 minute(s) 2 second(s) |
+--------------------------------------------+


Single for-loops


Loops using the range() function


  • For this section of the lab, open IDLE and create the different program sections below in the edit window, or in the Python shell window. I am using the python shell in the examples.


>>> for n in [0, 1, 2, 3]:
	print( n )

>>> for n in range( 4 ):
	print( n )

>>> for n in range( 1, 4 ):
	print( n )

>>> for n in range( -1, 4 ):
	print( n )

>>> for n in range( 5, 10 ):
	print( n )

>>> for n in range( 0, 10, 2 ):
	print( n )

>>> for n in range( 1, 10, 2 ):
	print( n )

>>> for n in range( 10, 0, -2 ):
	print( n )


  • Do you understand how the range() function works?
    • If you give it only 1 number, it will generate a series of numbers starting at 0 and going up to that number, but not including it, in steps of 1.
    • If you give it 2 numbers, it will use the first one as the start, and the second at the stop, and will generate all the integers between the two, in steps of 1. The stop number is never used.
    • IF you give it 3 numbers, the 3rd one is the step. It can be positive or negative.


  • Now, your turn:
List of even numbers
write a loop that prints all the even numbers between 4 and 20; 4, and 20 included.
List of odd numbers
write a loop that prints all the odd numbers between -3 and 19, -3, and 19 included.

Lists and Operations on Lists

  • Try the following Python statements in the Python shell (interactive mode).
     >>> students = [ "alice", "kate", "renee"]
    
     >>> students

     >>> students.append( "monique" )

     >>> students

     >>> students = []

     >>> students

     >>> students = [ "alice", "jack" ] + [ "monique", "chris", "andrea" ]

     >>> students
 
     >>> students[ 0 ]

     >>> students[ 1 ]

     >>> students[ -1 ]

     >>> students[ -2 ]           (try to figure out how negative indices work)

For-Loops ready for modification

  • Create the following python program (we're not working in interactive mode at this point). Don't hesitate to copy and paste to go faster!
     # lab2seq.py
     # 
     # initialize the farm with animals
     farm = [ "dog", "cat", "horse" ]

     # print the contents of the farm
     for animal in farm:
        print animal
Farm and animal are variables. One contains a list, the other one contains a string.
  • Add a pig to your farm, and make sure it gets listed by the program.
  • When you are done with the addition of the pig, observe another way for the program to do the same thing:
      # lab2seq2.py
      #
      farm = []              # create an empty farm
      farm.append( "dog" )   # add a dog to it
      farm.append( "cat" )   # then a cat
      farm.append( "horse" ) # then a horse
      farm.append( "pig" )   # and a pig

      # print the contents of the farm
      for animal in farm:
          print animal
Modification #1
Edit this second program so that instead of always adding the same animals to the farm, it will get four names of animals from the user, and add them to the farm. It will then print the contents of the farm on the screen. (Hint: use raw_input)
Modification #2
Change the for-loop of your program so that it reads:
      counter = 0
      for animal in farm:
          print counter, animal
          counter = counter + 1
          
  • Run the program. Observe its output. From this observation, modify the program so that its output now reads something like this (user input is in underlined):
       python lab2seq3.py

       animal? sheep
       animal? dog
       animal? bear
       animal? mouse

       Your farm now contains
       animal #1 : a sheep
       animal #2 : a dog
       animal #3 : a bear
       animal #4 : a mouse

Old MacDonald's Farm

Old MacDonald's farm is a song (almost) all American kids learn at one point in their life. I certainly never heard it when I grew up in France, but I think most of you will be familiar with it.

If you don't know it, this YouTube video will get you acquainted with it. :-)

The goal of this problem is for you to add a section to the program below so that it prints parts of the lyrics of the famous song using a for-loop.

Here's the beginning program which you have to modify:

    def main():
        # start with four animals in the farm
        farm = [ "horse", "pig", "dog", "cat" ]
    
        # display the names of the animals
        for animal in farm:
            print animal

    main()

First modification

  • Modify this program so that the output looks like the lyrics of the song:
    Old MacDonald had a farm, E-I-E-I-O
    And on his farm he had a horse, E-I-E-I-O
    Here a horse, there a horse, everywhere a horse!
    
    Old MacDonald had a farm, E-I-E-I-O
    And on his farm he had a pig, E-I-E-I-O
    Here a pig, there a pig, everywhere a pig!
    
    Old MacDonald had a farm, E-I-E-I-O
    And on his farm he had a dog, E-I-E-I-O
    Here a dog, there a dog, everywhere a dog!
    
    Old MacDonald had a farm, E-I-E-I-O
    And on his farm he had a cat, E-I-E-I-O
    Here a cat, there a cat, everywhere a cat!

(don't worry if you get extra spaces in your output)

Second modification

  • Modify your program some more, and make it prompt the user for the names of four animals first, and then make it display the lyrics as shown above with the user's selected animals.

Hard problem of the day

  • This problem is a bit harder, and requires some thinking...
  • Write a program that
    • asks the user for number between 0 and 20
    • Assume the user enters 7.
    • The program then prints 7 stars (*) on the line, followed by 13 exclamation marks (!)
    • In general, the program prints a number of stars equal to the number entered by the user, and continues with exclamation marks such that the total number of stars plus exclamation marks is 20. Always.
  • Examples of how your program should work (user input underlined):
      How many stars? 10
      * * * * * * * * * * ! ! ! ! ! ! ! ! ! ! 

      How many stars? 20
      * * * * * * * * * * * * * * * * * * * *

      How many stars? 1
      * ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !