Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
comparing two lists
#8
It is very tough on me because I like to search out the best or most efficient way to do something but in this class we are not allowed/rewarded for doing so. She seems to think if she didn't teach it to us then there is no way for us to know how to use it. I commented out the read file to empty list part of the program and copied the info to the list to make it easier for help.

CORRECT_ANSWERS = ["A" , "C" , "A" , "A" , "D" ,
                   "B" , "C" , "A" , "C" , "B" ,
                   "A" , "D" , "C" , "A" , "D" ,
                   "C" , "B" , "B" , "D" , "A"]


student_answers = ["A" , "C" , "A" , "A" , "A" ,
                   "B" , "C" , "A" , "C" , "C" ,
                   "A" , "D" , "C" , "A" , "A" ,
                   "C" , "B" , "B" , "D" , "D"]

#student_file = open("test.txt" , "r")


#for line in student_file:
#    student_answers.append(line.rstrip('\n'))


#student_file.close()


correct_answers = 0

for index in CORRECT_ANSWERS , student_answers:
    if CORRECT_ANSWERS[0] == student_answers[0]:
        correct_answers += 1

print(correct_answers)
I am getting an output of 2 and it should be 16 for the correct_answers. What am I missing here?
Reply


Messages In This Thread
comparing two lists - by Siylo - Jan-21-2019, 07:20 PM
RE: comparing two lists - by perfringo - Jan-21-2019, 07:29 PM
RE: comparing two lists - by Siylo - Jan-21-2019, 07:31 PM
RE: comparing two lists - by nilamo - Jan-21-2019, 09:23 PM
RE: comparing two lists - by ichabod801 - Jan-21-2019, 08:36 PM
RE: comparing two lists - by Siylo - Jan-21-2019, 08:52 PM
RE: comparing two lists - by ichabod801 - Jan-21-2019, 09:18 PM
RE: comparing two lists - by Siylo - Jan-21-2019, 09:27 PM
RE: comparing two lists - by ichabod801 - Jan-21-2019, 09:51 PM
RE: comparing two lists - by Siylo - Jan-21-2019, 09:58 PM
RE: comparing two lists - by ichabod801 - Jan-21-2019, 10:19 PM
RE: comparing two lists - by Siylo - Jan-21-2019, 10:59 PM
RE: comparing two lists - by perfringo - Jan-22-2019, 08:12 AM
RE: comparing two lists - by Siylo - Jan-22-2019, 06:56 PM
RE: comparing two lists - by ichabod801 - Jan-22-2019, 07:19 PM
RE: comparing two lists - by Siylo - Jan-22-2019, 09:03 PM
RE: comparing two lists - by nilamo - Jan-22-2019, 09:25 PM
RE: comparing two lists - by Siylo - Jan-22-2019, 10:01 PM
RE: comparing two lists - by Siylo - Jan-22-2019, 11:38 PM
RE: comparing two lists - by ichabod801 - Jan-23-2019, 02:09 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Comparing 2 lists BerryK 4 4,634 Apr-15-2017, 09:46 AM
Last Post: volcano63

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020