刚接触 python 并尝试学习文件 i/o 的技巧。
我正在以这种格式从一个大(200 万行)文件中提取行:
56fr4
4543d
4343d
5irh3
这是我用来返回代码的函数:
def getCode(i):
with open("test.txt") as f:
for index, line in enumerate(f):
if index == i:
code = # what does it equal?
break
return code
一旦索引到达正确的位置 (i),我使用什么语法来设置代码变量?