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