pythonrun怎么改名字?
首先獲得工作路徑
import osworkpath = os.getcwd()
拼接獲取run.py和newrun.txt的絕對路徑
src = os.path.join(os.getcwd(), 'run.py')dst = os.path.join(os.getcwd(), 'newrun.txt')
使用rename函數
try: os.rename(src, dst)except Exception as e: print(e) print('rename file fail\r\n')else: print('rename file success\r\n')
上一篇電腦打印尺寸怎么調整
下一篇網絡電視怎么撥號撥不上去