もっと詳しく

連載目次 import os with open(‘a.txt’, ‘wt’) as f: # a.txtを作成 pass with open(‘b.txt’, ‘wt’) as f: # b.txtを作成 pass # ファイルの名前変更 os.rename(‘a.txt’, ‘c.txt’) # UNIX/Windows: 成功 # ファイル名を既存のファイルの名前に変更しようとする # Windowsではファイル名を既存のファイ…