I have something like 5 lists all containing different data.
I have the user input into a list like so:
for i in range (0,completed):
print 'Class: ',
course = raw_input()
course = course.upper()
allcourses.append(course)
now the list cmsc has as many courses in it as the user defined before the for loop.
Ok, thats fine, but now I have 3 different lists I need to compare the user list to. So if the user inputs 3 courses like:
cs 201
cs 202
math 151
Then I need it to print out the remaining courses in the lists. like
print 'you still need to take '
print remaining cs courses not appended in allcourses list
print remaining math courses not appended in allcourses list
Thanks in advance, this is just a personal project i really need, I always wonder what else I have to take o.O