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
You have two lists on hand: people
and new_people
, both of which contain names. Here's what you need to do:
- Merge the
people
list with thenew_people
list. Store the merged list in a variable calledpeople_upd
and display it. - Update the
people
list by adding the names fromnew_people
using a list method.
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 4. Chapter 3
Challenge
Task
Swipe to show code editor
You have two lists on hand: people
and new_people
, both of which contain names. Here's what you need to do:
- Merge the
people
list with thenew_people
list. Store the merged list in a variable calledpeople_upd
and display it. - Update the
people
list by adding the names fromnew_people
using a list method.
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 4. Chapter 3
Switch to desktop for real-world practiceContinue from where you are using one of the options below