是一门编程语言,不过方向很多,如果你把他当成一个简单的工具也可以,比如你不用去编写大型软件,web等,你仅仅想用到快速的移动文件或改名等,那python也是可以胜任,下面这段代码如果你能看懂,那说明python绝对简洁(代码的作用是在path这个目录下找docx文件,找到后移到newpath目录下):
import os
path = "d:/文档/"
newpath = "d:/docx文件/"
for file in os.listdir(path):
if "docx"in file:
os.rename(path + file,newpath + file)。
import os
path = "d:/文档/"
newpath = "d:/docx文件/"
for file in os.listdir(path):
if "docx"in file:
os.rename(path + file,newpath + file)。