0

Python Developer

Complete the code to iterate through the grades list and display only values greater than 50

15th Sep 2025, 12:46 PM
Purity Iwuoha
4 Respostas
+ 1
Purity Iwuoha , if you like to get help, please show us your *current code try* first.
15th Sep 2025, 12:52 PM
Lothar
Lothar - avatar
0
Hi! Please, show you attempt here 👇
15th Sep 2025, 12:52 PM
Yaroslav Vernigora
Yaroslav Vernigora - avatar
0
for grade in grades: if grade <= 50: += print(grade)
15th Sep 2025, 12:55 PM
Purity Iwuoha
0
That += is wrong What could be the answer
15th Sep 2025, 12:56 PM
Purity Iwuoha