欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python 不同方式读取文件速度不同的实例

程序员文章站 2023-10-31 15:29:58
1、按行读取较慢较耗时: srcfiles = open('inputfile.txt', 'r') for file_path in srcfiles:...

1、按行读取较慢较耗时:

 srcfiles = open('inputfile.txt', 'r')
 for file_path in srcfiles:
  file_path = file_path.rstrip()

2、快速读取所有行:

 with open('inputfile.txt', 'r') as fread: 
  srcpaths = fread.readlines() #txt中所有字符串读入list列表srcpaths 
  random.shuffle(srcpaths) #打乱list顺序
  for img_path in srcpaths:
  img_path = img_path.rstrip()

以上这篇python 不同方式读取文件速度不同的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。