在python中读取.DAT文件?

时间:2013-08-20 16:36:49

标签: python

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

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

如何分别访问每一行?

1 个答案:

答案 0 :(得分:10)

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

奖金:网球!