Is there a way to print out 2 lists together, for one I can do for
for g in grades:
    print(g)
Which results in: 83, 25, 90 etc.. I have a second list called 'cc'. Both lists have the same number of items in the proper order. I'm trying to print them as
print(cc[0])
print(g[0])
And so on for all the items in the list.
I've already tried
for g in grades:
    for x in cc:
        print(x)
        print(g)
Which as expected prints out many more times than once for each. Is there a way to properly do this? I think I'm writing this clear enough.
 
     
     
    