12.7. Week 7 Lab

Material Covered

Combining functions, iteration and conditionals (Chapter 7)

12.7.1. Level 1

In this level you are given scrambled lines of code, the objective is to use these lines to recreate the following output. This code combines a function, iteration and conditional statements together.

Output should look like this:

../_images/Lab7Level1_expectedOutput.png

Tip

Don’t forget to use the proper indentation. Every line must be used only once. You do not need to add, delete or alter any code in this level, but you will have to indent some lines.

12.7.2. Level 2

In this level you will use conditional statements to validate user input. In the program below, we ask the end user to enter a number and then we square that number and print out the result. But, a problem occurs if the user enters something like “seven” instead of “7”. Similarly, if they enter “$45” instead of “45”, Python can’t convert that into an int (because of the dollar sign) and so a runtime error will occur.

Follow the steps below to add input validation.

  1. First run the given code and enter a valid number to see what happens.

  2. Next, run the given code but type in something like “seven” or “hello” or “$45” and see what happens. You will see a runtime error (specifically a ValueError), because Python can’t convert the user’s string into an integer.

  3. Add a boolean variable called input_valid at the top of the script and set this to True. This is what we call a flag variable. It will stay true unless it turns out that the user gives bad input, in which case you will set it to false.

  4. Write an if statement that checks the value of the flag variable. If it is true, the three lines that convert the input, square it and print it out (lines 13-15) should be executed (you’ll need to indent them in the if block). If the flag variable is false, you should print out a message that reports the input received and tells the user it is not a valid input. (Something like “You entered ‘eighteen’ which is not a valid number”).

  5. Test this. As long as you give good input, the program should still work. But if you give bad input, the program still tries to use the input and convert it to an int, so it crashes. That’s because you haven’t yet done anything to detect bad input and set the flag to False.

  6. Now, you need to test the input and if it’s bad, you need to set the flag to False. This detection code has to be added above the if statement you worked on in the last step (you want to check to ensure the input is valid before attempting to convert it to an int). You will need to use a built-in string method called isdigit() (see below for a usage example). You can call this method on a string and it will return true only if all of the characters in the string are numeric digits. You need to write an if statement that tests whether num_str.isdigit() returns true or false. But, you want to do something only if it is false. So you need to use the not operator in your test. Pseudocode for your if statement: if not all digits, then set input_valid flag to false.

../_images/isdigit_example.jpg
  1. Inside the if block, set the input_valid boolean flag to False. There is no else block needed.

  2. Now test your code. If you type in something like $45 your if statement should detect that not all the characters are digits and it should set input_valid to false. The second if statement should now print out an error message because the input_valid flag is not true.

12.7.3. Level 3

In this level you will create a nice deck of cards. Here is a snippet of the output you are aiming for:

../_images/Lab7_cards_output.png

The code below gets you most of the way there. That code prints out the cards for each suit. However, for the face cards, it is just printing out numbers. We want the face cards written out as ‘Queen of Diamonds’ and ‘Ace of Spades’, not ‘12 of Diamonds’ and ‘14 of Spades’, etc.

To do this, you will need to add a chained conditional that tests for the numbers 11-14. If the current number isn’t any of those, then card = str(num) should be executed as the default. Look at the comments in the code to help figure out what the chained conditional should look like.

You have attempted of activities on this page