Challenge: Working with the For Loop
Compito
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
.
Soluzione
Tutto è chiaro?
Grazie per i tuoi commenti!
Sezione 5. Capitolo 4
single
Chieda ad AI
Chieda ad AI
Chieda pure quello che desidera o provi una delle domande suggerite per iniziare la nostra conversazione
Awesome!
Completion rate improved to 1.67
Challenge: Working with the For Loop
Scorri per mostrare il menu
Compito
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
.
Soluzione
Tutto è chiaro?
Grazie per i tuoi commenti!
Awesome!
Completion rate improved to 1.67Sezione 5. Capitolo 4
single