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
Task
Swipe to show code editor
-
Create a variable named
i
and set it to1
. -
Begin a
while
loop that runs for numbers from1
to9
(inclusive). Inside the loop, do the following:- Print the square of
i
; - Increment
i
by1
.
- Print the square of
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 5. Chapter 2
Challenge
Task
Swipe to show code editor
-
Create a variable named
i
and set it to1
. -
Begin a
while
loop that runs for numbers from1
to9
(inclusive). Inside the loop, do the following:- Print the square of
i
; - Increment
i
by1
.
- Print the square of
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 5. Chapter 2
Switch to desktop for real-world practiceContinue from where you are using one of the options below