小编典典

如何使用Python重命名文件

python

我想更改a.txtb.kml


阅读 458

收藏
2020-02-20

共1个答案

小编典典

用途os.rename:

import os

os.rename('a.txt', 'b.kml')
2020-02-20