Python3实现从txt文件中读取指定行的方法
生活随笔
收集整理的這篇文章主要介紹了
Python3实现从txt文件中读取指定行的方法
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Python3實現從txt文件中讀取指定行的方法
本文實例講述了Python3實現從文件中讀取指定行的方法。分享給大家供大家參考。具體實現方法如下: def getline(the_file_path, line_number):if line_number < 1:return ''for cur_line_number, line in enumerate(open(the_file_path, 'rU')):if cur_line_number == line_number-1:return linereturn ''the_line = linecache.getline('d:/FreakOut.cpp', 222) print (the_line)總結
以上是生活随笔為你收集整理的Python3实现从txt文件中读取指定行的方法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 使用IPFS集群搭建创建私有IPFS网络
- 下一篇: the blocks problem(u