Challenge: Working with the For Loop
Task
Swipe to start coding
You are given the list employee_salaries
. This year, your company earned much more than expected due to the hard work and dedication of the employees, so you decided to increase all salaries by 10%.
- Use a
for
loop to iterate through theemployee_salaries
list. - In the
updated_salaries
list, record each salary increased by 10% using the.append()
method. - You can use the following formula to increase by 10%:
element * 1.1
.
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 5. ChapterΒ 4
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Suggested prompts:
Summarize this chapter
Explain the code in file
Explain why file doesn't solve the task
Awesome!
Completion rate improved to 1.67
Challenge: Working with the For Loop
Swipe to show menu
Task
Swipe to start coding
You are given the list employee_salaries
. This year, your company earned much more than expected due to the hard work and dedication of the employees, so you decided to increase all salaries by 10%.
- Use a
for
loop to iterate through theemployee_salaries
list. - In the
updated_salaries
list, record each salary increased by 10% using the.append()
method. - You can use the following formula to increase by 10%:
element * 1.1
.
Solution
Everything was clear?
Thanks for your feedback!
Awesome!
Completion rate improved to 1.67SectionΒ 5. ChapterΒ 4
single