Course Content
Introduction to Python
Introduction to Python
3. Conditional Statements
Boolean Data TypeChallenge: Comparison OperatorsCombining ConditionsChallenge: Logical OperatorsMembership Operators and Types ComparisonSimple if/else ExpressionsChallenge: Grocery StoreChallenge: Odd and Evenif/elif/else ExpressionsChallenge: Grocery Store ExtendedChallenge: Positive, Negative or Zero
Challenge
Let's tackle a task!
Task
Swipe to show code editor
The road distance between San Francisco and New York is approximately 4677.4 km. This distance is stored in the variable distance_in_kilometers
. Here's what you need to do:
- Convert the distance from kilometers (
distance_in_kilometers
) to miles by dividing it by1.609
. Store the result in the variabledistance_in_miles
. - Display the value of
distance_in_miles
. - Convert
distance_in_miles
to an integer data type and display its value.
Solution
Switch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?
Thanks for your feedback!
Section 2. Chapter 6
Challenge
Let's tackle a task!
Task
Swipe to show code editor
The road distance between San Francisco and New York is approximately 4677.4 km. This distance is stored in the variable distance_in_kilometers
. Here's what you need to do:
- Convert the distance from kilometers (
distance_in_kilometers
) to miles by dividing it by1.609
. Store the result in the variabledistance_in_miles
. - Display the value of
distance_in_miles
. - Convert
distance_in_miles
to an integer data type and display its value.
Solution
Switch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?
Thanks for your feedback!
Section 2. Chapter 6
Switch to desktop for real-world practiceContinue from where you are using one of the options below