Challenge set
Python Lists
Build practical Python list skills through six Challenges covering access, updates, appending, removing, slicing, reversing, and ordered collections.
Work through the collection
Challenges in This Set
- 01
Python
Route Endpoints in Python
Read values from a Python list by positive and negative index, then print the first and last destinations from the provided route.
50XPBeginner - 02
Python
Update the Guest List in Python
Update a Python list item in place through its index, then print the corrected guest list without adding or removing any names.
50XPBeginner - 03
Python
Pack the Backpack in Python
Use Python append() to add two essential supplies to a backpack list, then print the completed packing list and its new length.
50XPBeginner - 04
Python
Remove the Last Track in Python
Use Python pop() to remove the final track from a playlist, save the returned song, and print both the removed track and remaining list.
50XPBeginner - 05
Python
Weekend Schedule in Python
Use Python list slicing to copy the weekend plans from a weekly schedule, then print both lists to confirm the original stays unchanged.
50XPBeginner - 06
Python
Reverse a List in Python
Reverse a Python list by hand with a loop, return a new list, and leave the original order unchanged without using built-in shortcuts.
50XPBeginner

