Help with bucle for in this code | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 1

Help with bucle for in this code

So, this code ask you what is the score you got in every subject. If the score > 5 l want to eliminate the subject and the score from the list and then print the subjects and scores. I can't figure out why in the bucle for, it never remove the last subject and score if it is > 5. What am l doing wrong? Thank you! subjects=['math',' english', 'fisics'] grades=[] for i in subjects: g=int(input('What is your score in '+i)) grades.append(g) c=0 for x in grades: if x>5: subjects.pop(c) grades.pop(c) c=c+1 print(subjects) print(grades)

26th May 2020, 12:27 PM
GusPrzygora
GusPrzygora - avatar
3 Antworten
+ 2
for loops works according to index no.thats why you are facing this problem
1st Jun 2020, 10:42 AM
ANJALI SAHU
+ 1
You have written the line C=C+1 outside the for Loop ..so inside the loop c is always zero..so for any value it always removes the value of index no. 0. I think this should be the code.. subjects=['math',' english', 'fisics'] grades=[] for i in subjects: g=int(input('What is your score in '+i)) grades.append(g) c=0 for x in grades: if x>5: subjects.pop(c) grades.pop(c) c=c+1 print(subjects) print(grades)
26th May 2020, 12:46 PM
ANJALI SAHU
0
That make perfect sense and l did it, but for some reason now it is always keeping the second ([1])item of the list
26th May 2020, 12:57 PM
GusPrzygora
GusPrzygora - avatar