Unit 3 Task 8: Double every level score

Learn to code with step-by-step lessons. A place for students to work through programming fundamentals and build skills.

Unit 3 Task 8 - Double every level score

← Unit 3 tasks - Solution


You have a list of level scores in your code, e.g. [100, 250, 400]. Build a new list where each entry is double the original (bonus round).

Print the original list and the doubled list.

Skills: for item in list, append to a second list.