Python相关

一、pip版本更新

python -m pip install -U pip

二、给文件夹下的文件批量命名

# coding:utf-8
import os


def rename():
    count = 1
    path = r'C:\Users\daile\Desktop\T'
    filelist = os.listdir(path)  # 该文件夹下所有的文件(包括文件夹)
    for files in filelist:  # 遍历所有文件
        if count < 10:
            num = '0' + str(count)
        else:
            num = str(count)
        Olddir = os.path.join(path, files)  # 原来的文件路径
        if os.path.isdir(Olddir):  # 如果是文件夹则跳过
            continue
        filetype = os.path.splitext(files)[1]  # 文件扩展名
        Newdir = os.path.join(path, num + filetype)  # 新的文件路径
        os.rename(Olddir, Newdir)  # 重命名
        count += 1


rename()

显示文件后缀

我的电脑------查看------文件扩展名----打勾

运行Python文件

python C:\Users\daile\Desktop\rename.py

你可能感兴趣的:(Python相关)