Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Excelファイルを開くための小さなPythonコードがあります。名前を変えて同じ形式で「名前を付けて保存」したいと思います。どうすればいいですか..どんな助けでも素晴らしいでしょう。FK
/ の代わりに \\ を使用してください
import win32com.client office = win32com.client.Dispatch("Excel.Application") wb = office.Workbooks.Open("C:/FileName.xlsx") wb.SaveAs(Filename:="C:\\NewFileName.xlsx") wb.Close() office.Quit()