LIst_exercisek

 avatar
unknown
plain_text
3 years ago
284 B
4
Indexable
grades = ["A", "B", "C"]
print (grades)

for grades in grades:
    print (grades)

for grade in grades:
    print (grades)

#these print differently than what they did for the instructor. how they print according my code makes sense to me and not the way it printed for the instructor
Editor is loading...