Solved

Case Study 1: 1. Def ReadFile(filename )

Question 5

Multiple Choice

Case Study 1:
1. def readFile(filename ) :
2. with open(filename , "r") as dataFile
3. dataDict = {}
4.
5. key = 0
6. for aLine in dataFile:
7. key = key + 1
8. score = int(aLine)
9.
10. dataDict[key] = [score]
11.
12. return dataDict
-Refer to the session in the accompanying Case Study 1. What happens in Line 10?


A) The score is entered in the dictionary associated with the key.
B) The line is read from the file.
C) The key is computed.
D) The file is opened.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions