要批量生产文件名,可用下面方法:
for i in range(1, 5): # (1, 5)定义生产多少文件名和文件名前缀
filename = str(i).zfill(2) + 'python'
print(filename)
打印结果:
00.python
01.python
02.python
03.python
04.python
要批量生产文件名,可用下面方法:
for i in range(1, 5): # (1, 5)定义生产多少文件名和文件名前缀
filename = str(i).zfill(2) + 'python'
print(filename)
打印结果:
00.python
01.python
02.python
03.python
04.python