码迷,mamicode.com
首页 > 其他好文 > 详细

修改添加网址的教程文件名

时间:2018-01-21 11:11:15      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:网址   name   body   pre   mat   roo   os.path   int   div   

import os
import os.path
rootname = ‘D:\Python\spider3.6‘
rootdir = os.listdir(rootname)
for z in rootdir[1:]:
file_detail= rootname+‘\\‘+z
dir_detail = os.listdir(file_detail)
for i in dir_detail:
file_name = file_detail + ‘\\‘ + i
print(file_detail+‘\\‘+i)
# print(i[21:])
os.rename(file_detail + ‘\\‘ + i,file_detail+‘\\‘+i[21:])

import os
import os.path
rootname = ‘D:\Python\spider3.6‘
rootdir = os.listdir(rootname)
for z in rootdir[1:]:
file_detail= rootname+‘\\‘+z
dir_detail = os.listdir(file_detail)
for i in dir_detail:
h = ‘\\‘
print(file_detail+h+i)
h = str(h)
print(i)
k = i.replace(‘讲‘,‘:‘)
os.rename(file_detail+‘{}‘.format(h)+i,file_detail+‘{}‘.format(h)+k)


修改添加网址的教程文件名

标签:网址   name   body   pre   mat   roo   os.path   int   div   

原文地址:https://www.cnblogs.com/hyolyn/p/8323146.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!