程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

python如何獲取文件行數、如何刪除文件後面的幾行、如何利用python在文件前、文件尾添加文本

編輯:Python

python中獲取文件行數的方法:

#獲取文件行數
import os
os.chdir(r'C:\WorkDir\pyecharts-gallery-master\Bar3D')
os.listdir()
for count,line in enumerate(open(f"bar3d_base.py", "r", encoding='utf-8')):
count+=1
print(count)

 在文件前部添加語句、刪除文件尾部的最後兩行,並記錄倒數第2行,將其剪切到最後一行:

#對文件進行添頭續尾
#添加到文件頭的代碼
strhost="""#LocalhostConfig
# 配置CurrentConfig.ONLINE_HOST為本機地址資源
from pyecharts.globals import CurrentConfig
CurrentConfig.ONLINE_HOST = "http://127.0.0.1:8000/assets/"
"""
import os
os.chdir(r'C:\WorkDir\pyecharts-gallery-master\Bar3D')
os.listdir()
filename='bar3d_base.py'
with open(filename, "r",encoding='utf-8') as fn:
strcode=fn.read()
print('----------origin file-----------')
print(strcode)
with open(filename, "r",encoding='utf-8') as oldf:
strold=oldf.readlines()
str_htmlrender=strold[-2].strip()#記錄倒數第2行的html渲染程序
del strold[-1]#刪除最後2行程序
del strold[-1]
with open(filename, "w",encoding='utf-8') as newf:
if not strcode.startswith("#LocalhostConfig"):#如果原代碼前端還沒有配置本地地址資源
newf.writelines(strhost)#首先在原代碼的最前端添加本地地址資源
newf.writelines(strold)#接著添加原代碼的內容
newf.writelines(')\nc.render_notebook()\nc')#然後添加在notebook中直接渲染的內容
newf.writelines(str_htmlrender)#最後將原來的渲染為html文件的內容添加在最後
with open(filename, "r",encoding='utf-8') as fn:
strcode=fn.read()
print('----------modify file-----------')
print(strcode)

最後實現的效果如下所示:

原始的python程序如下

自動進行修改後的python程序如下

 


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved