基本信息
源码名称:批量替换文件夹下*.py文件里面的print "*" -->print("*")
源码大小:0.79KB
文件格式:.py
开发语言:Python
更新时间:2020-04-25
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 1 元 
   源码介绍

  批量替换文件夹下*.py文件里面的print "*" -->print("*")

#批量替换选定文件夹或文件的print " "函数改print()  代码如下:
import os, re,tkinter
from tkinter import filedialog
if __name__=='__main__':
    work_dir=filedialog.askdirectory()  
    for parent, dirnames, filenames in os.walk(work_dir,  followlinks=True):
        for filename in filenames:
            if filename.find(".py")>0:
                file_path = os.path.join(parent, filename)
                file = open(file_path,"r ",encoding='UTF-8')
                sent=""
                for line in file.readlines():
                    line = re.sub(u"print[^\(](.*?);?$[^\)]",  u"print (\\1)", line)
                    sent=sent "\n" line
                file.close()
                file = open(file_path,"w",encoding='UTF-8')
                file.write(sent[1:])
                file.close()