Python's approach to bulk modifying text file content

Source: Internet
Author: User
This article mainly describes the Python bulk modification of text file content of the relevant information, the need for friends can refer to the following

Python bulk replaces file contents, supports nested folders

Import ospath= "./" for Root,dirs,files in Os.walk (path): For name in Files: #print nameif name.endswith (". html"): #print Root,dirs,name filename=root+ "/" +namef=open (filename, "R") filecontent= "" Line=f.readline () while line:l= Line.replace (":/arcgis_js_api", "/arcgisapi") Filecontent=filecontent+lline=f.readline () F.close () f=file (filename , "W") F.writelines (filecontent) f.close ()

About this article to introduce to you the Python bulk modified text file content method, we all understand, if you have questions welcome to my message, small series will be timely to everyone reply!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.