Difference between revisions of "CSC111 Lab 4 2014"

From dftwiki3
Jump to: navigation, search
(Challenge 1)
Line 28: Line 28:
 
Can you make your program only 3 characters longer and make it accept only numbers that are less than 3 or greater than 9?
 
Can you make your program only 3 characters longer and make it accept only numbers that are less than 3 or greater than 9?
 
<br />
 
<br />
 +
<br />
 +
<br />
 +
<br />
 +
<br />
 +
<br />
 +
<br />
 +
<br />
 +
 
==Exercise 2==
 
==Exercise 2==
  

Revision as of 19:40, 17 February 2014

--D. Thiebaut (talk) 15:11, 17 February 2014 (EST)





Lab on While Loops

Exercise 1

  • Observe the program below
  • Once you have figured out how it works, enter it in Idle and run it. Verify that it runs correctly.


x = input( "enter an integer between 3 and 9: " ) 
while  3 <= x <= 9: 
   print "invalid input!" 
   x = input( "enter an integer between 3 and 9: " ) 

print( "x = ", x )


Challenge 1

QuestionMark3.jpg

Can you make your program only 3 characters longer and make it accept only numbers that are less than 3 or greater than 9?







Exercise 2

Write a Python program that asks the user to respond by 'Y', 'y', 'yes', 'YES' or 'N', 'n', 'no', 'NO'. The function keeps on asking until the user enters the correct information.

Your while loop should be the Python translation of the following sentence:

if the user's answer is not 'y' and it's not 'n', then keep on looping


Exercise 3

Write a program that reads a character for playing the game of Rock-Paper-Scissors. If the character entered by the user is not one of 'P', 'R' or 'S', the program keeps on prompting the user to enter a new character.

Exercise 4: Sentinels

  • Type or copy the program below in Idle.
  • Look at it and make sure you think you know how it will work
  • Run the program




Write a Python program that reads strings of characters until it finds the string "THE END.", in which case it stops. The program will count how many times the word "mother" appears in all the strings entered.

Demo: count the number of times the words "Amherst" or "women" appear in Emily Dickinson's poems
Exercise 5
Write a program that asks the user for three pieces of information: a starting balance, a target balance, and an interest rate (entered as 0.05 for 5%, for example). The program then outputs the number of investment periods required for the starting balance to have grown larger than the target balance. While this can be computed directly mathematically, we want for this exercise to use a while loop to figure out the answer.
The answer should just be a line stating something like: "To grow an initial investment of $1000 to $2000 at 4.5% will require