发布时间:2019-09-07 08:10:53编辑:auto阅读(1996)
#!/usr/bin/env python
# -*- coding:UTF-8 -*-
import os
# 第一种方法
files = os.listdir('.')
i = 1
for f in files:
filename, extname = os.path.splitext(f)
if extname == '.txt':
os.rename(f, 't%d%s' % (i, extname))
i += 1
print '#' * 30
#第二种方法,修改文件扩展名
for f in files:
file_name, file_extname = f.split('.')
# print file_name, file_extname
if file_extname == 'txt':
os.rename(f, '%s.py' % file_name)
print u'文件扩展名修改成功!'
上一篇: Python 学习笔记 (6)—— 读写
下一篇: python之文件操作、OS模块、CSV
51560
51138
41660
38415
32904
29877
28594
23554
23488
21833
1983°
2690°
2251°
2179°
2629°
2198°
2944°
4877°
4702°
3352°