0
Python Developer
Complete the code to iterate through the grades list and display only values greater than 50
4 Antwoorden
+ 1
Purity Iwuoha ,
if you like to get help, please show us your *current code try* first.
0
Hi! Please, show you attempt here 👇
0
for grade in grades:
if grade <= 50:
+=
print(grade)
0
That += is wrong
What could be the answer