Problem 1
Conditional Tests: Write a series of conditional tests. Print a statement
describing each test and your prediction for the results of each test. Your
code should look something like this:
Problem 2
More Conditional Tests: You don't have to limit the number of tests you create to 10 . If you want to try more comparisons, write more tests and add them to conditional_tests.py. Have at least one True and one False result for each of the following: \- Tests for equality and inequality with strings \- Tests using the lower () function \- Numerical tests involving equality and inequality, greater than and less than, greater than or equal to, and less than or equal to \- Tests using the and keyword and the or keyword \- Test whether an item is in a list \- Test whether an item is not in a list
Problem 3
1: Imagine an alien was just shot down in a game. Create a variable called alien_color and assign it a value of 'green', 'yellow', or 'red'. \- Write an if… # Alien Colors #1: Imagine an alien was just shot down in a game. Create a variable called alien_color and assign it a value of 'green', 'yellow', or 'red'. \- Write an if statement to test whether the alien's color is green. If it is, print a message that the player just earned 5 points. \- Write one version of this program that passes the if test and another that fails. (The version that fails will have no output.)
Problem 6
Stages of Life: Write an if-elif-else chain that determines a person's stage of life. Set a value for the variable age, and then: \- If the person is less than 2 years old, print a message that the person is a baby. \- If the person is at least 2 years old but less than 4 , print a message that the person is a toddler. \- If the person is at least 4 years old but less than 13 , print a message that the person is a kid. \- If the person is at least 13 years old but less than 20, print a message that the person is a teenager. \- If the person is at least 20 years old but less than 65 , print a message that the person is an adult. \- If the person is age 65 or older, print a message that the person is an elder.
Problem 7
Favorite Fruit: Make a list of your favorite fruits, and then write a series of independent if statements that check for certain fruits in your list. \- Make a list of your three favorite fruits and call it favorite_fruits. \- Write five if statements. Each should check whether a certain kind of fruit is in your list. If the fruit is in your list, the if block should print a statement, such as You really like bananas!
Problem 8
Hello Admin: Make a list of five or more usernames, including the name 'admin'. Imagine you are writing code that will print a greeting to each user after they log in to a website. Loop through the list, and print a greeting to each user: \- If the username is 'admin', print a special greeting, such as Hello admin, would you like to see a status report? \- Otherwise, print a generic greeting, such as Hello Eric, thank you for logging in again.
Problem 9
No Users: Add an if test to hello_admin.py to make sure the list of users is not empty. \- If the list is empty, print the message We need to find some users! \- Remove all of the usernames from your list, and make sure the correct message is printed.
Problem 10
Checking Usernames: Do the following to create a program that simulates how websites ensure that everyone has a unique username. \- Make a list of five or more usernames called current_users. \- Make another list of five usernames called new_users. Make sure one or two of the new usernames are also in the current_users list. \- Loop through the new_users list to see if each new username has already been used. If it has, print a message that the person will need to enter a new username. If a username has not been used, print a message saying that the username is available. \- Make sure your comparison is case insensitive. If 'John' has been used, 'JoHN' should not be accepted.
Problem 11
Ordinal Numbers: Ordinal numbers indicate their position in a list, such as
Problem 13
Your Ideas: At this point, you're a more capable programmer than you were when you started this book. Now that you have a better sense of how real-world situations are modeled in programs, you might be thinking of some problems you could solve with your own programs. Record any new ideas you have about problems you might want to solve as your programming skills continue to improve. Consider games you might want to write, data sets you might want to explore, and web applications you'd like to create.