【Python在工作中的应用】

Python与机器学习 徐 自远 680℃

【Python在工作中的应用】

记住代码都是别人的哪都是,那不是你的,别直接自己运行真把他弄懂

例1:文件批量处理

对文件进行批量重命名,将文件夹中所有的文件名的”scroll_1”替换为”scroll_00”

文件批量重命名

import os

path = ‘C:\\Users\\tylerzhu\\Desktop\\icon’

for file in os.listdir(path):

if os.path.isfile(os.path.join(path,file))==True:

newname = file.replace(“scroll_1”, “scroll_00”)

os.rename(os.path.join(path,file),os.path.join(path,newname))

print(file)

例2:xml与excel互转

Excel转xml

XML,info_fight_monster.xml包含怪物的所有信息

编写脚本将Excel转换为XML格式

Xml转Excel

下面的例子将技能书info_fight_book.xml的数据转换为excel格式,例子只包含一个sheet的,如果有多个sheet同样处理即可。

学习Python的同学注意了!!!

免费Python教学视屏不间断更新

https://m.toutiao.com/group/6408250098896535810/?iid=9443427907&app=news_article&tt_from=android_share&utm_medium=toutiao_android&utm_campaign=client_share

 

转载请注明:徐自远的乱七八糟小站 » 【Python在工作中的应用】

喜欢 (0)

苏ICP备18041234号-1 bei_an 苏公网安备 32021402001397号