我正在从Python文件中读取行.这是我的代码:
with open('words','rb') as f:
for line in f:
有没有办法定义我想要使用的行数?比方说,文件中的前1000行?
解决方法:
你可以使用enumerate():
with open('words','rb') as f:
for i, line in enumerate(f):
if i >= 1000:
break
# do work for first 1000 lines