Chapter 5: 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
Short Answer
Step by step solution
Set up the Python Environment
String Equality and Inequality Tests
Using the lower() Function
Numerical Comparisons
Using 'and' and 'or' Keywords
Item Presence in a List
Item Absence from a List
Verify Test Output
Unlock Step-by-Step Solutions & Ace Your Exams!
-
Full Textbook Solutions
Get detailed explanations and key concepts
-
Unlimited Al creation
Al flashcards, explanations, exams and more...
-
Ads-free access
To over 500 millions flashcards
-
Money-back guarantee
We refund you if you fail your exam.
Over 30 million students worldwide already upgrade their learning with Vaia!
Key Concepts
These are the key concepts you need to understand to accurately answer the question.
string comparison
For instance, if you have two strings, `string_one = "apple"` and `string_two = "banana"`, you can test their equality or inequality as follows:
print(string_one == string_two)
: This will output `False` because 'apple' and 'banana' are not the same.print(string_one != string_two)
: This will output `True` because 'apple' is indeed different from 'banana'.
lower() function in Python
For example, let’s say you have a string `base_string = "Hello"`. You can normalize the case as follows:
print(base_string.lower() == "hello")
: This will return `True` because 'hello' is the lowercase version of 'Hello'.print(base_string.lower() == "HELLO")
: This will return `False` since 'hello' was compared against 'HELLO'.
numerical comparisons
Consider two numbers: `num1 = 10` and `num2 = 20`. You can perform the following tests:
print(num1 == num2)
: Tests for equality and returns `False` since 10 is not equal to 20.print(num1 != num2)
: Tests for inequality and returns `True`.print(num1 > num2)
: Checks if 10 is greater than 20; expected output is `False`.print(num1 < num2)
: Compares if 10 is less than 20; outputs `True`.print(num2 >= num1)
: Evaluates if 20 is greater than or equal to 10; results in `True`.print(num1 <= 5)
: Tests if 10 is less than or equal to 5; gives `False`.
logical operators in Python
Imagine using two variables: `x = 5` and `y = 10`. Here’s how logical operators can be applied:
print(x < 10 and y > 5)
: Returns `True` as both conditions are satisfied (5 < 10 and 10 > 5).print(x < 10 or y < 5)
: Returns `True` because at least one condition (5 < 10) is true.print(x > 10 and y > 5)
: Outputs `False` since the first condition (5 > 10) is not true.print(x > 10 or y < 0)
: Outputs `False` because neither condition is met.
list membership testing
For instance, with a list `fruits = ["apple", "banana", "cherry"]`, you can perform the following tests:
print("apple" in fruits)
: Checks if 'apple' is in the list, which results in `True`.print("orange" in fruits)
: Tests for 'orange'; outputs `False` as it isn't in the list.
print("Miami" not in cities)
: With `cities = ["New York", "Los Angeles", "Chicago"]`, this result is `True`.print("Chicago" not in cities)
: Returns `False` since 'Chicago' is in `cities`.