python

来源:互联网 发布:娶网络女主播 编辑:程序博客网 时间:2024/06/11 18:08
import ospath = 'F:\电影\xxx'drop_str = '【支付宝:xxx 打赏一元 有惊喜哟】'items = os.listdir(path)os.chdir(path)print(os.getcwd())for name in items:    print(name)    new_name = ''.join(name.split(drop_str))    os.rename(name, new_name)print('-----------------分界线--------------------')items = os.listdir(path)for name in items:    print(name)



原创粉丝点击