Python ファイルの名前変更
カレントディレクトリにあるtest1.txt を test2.txtへ名前を変更する例
1.サンプル
#
# coding: utf-8
# ファイルの名前変更
# カレントディレクトリにある
# test1.txt を
# test2.txt へ変更します
#
import os
os.rename("test1.txt", "test2.txt")
PR
統計、機械学習、AIを学んでいきたいと思います。 お役に立てば幸いです。
#
# coding: utf-8
# ファイルの名前変更
# カレントディレクトリにある
# test1.txt を
# test2.txt へ変更します
#
import os
os.rename("test1.txt", "test2.txt")