我正在制作一个基本程序,其中有一个带有多个选择答案的测验。我想从.DAT文件访问数据。
这是.DAT文件的基本布局。

Which sport uses the term LOVE ?
Tennis
Golf
Football
Swimming
A

如何分别访问每条线?

最佳答案

for line in open(filename, 'r'):
    item = line.rstrip() # strip off newline and any other trailing whitespace
    ...

奖金:网球!

关于python - 在python中读取.DAT文件?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18340457/

10-12 20:24