python python ファイル,フォルダ 存在確認 exist ファイルの有無を確認して上書きしないようにファイル名を変更したり、フォルダがなければ作成したり、という用途でそれぞれの存在確認をしたい時は、以下の様にos.path.existを使うことで確認できる。os.path.exist("確認したい... 2023.03.28 python
python python パスの結合 デスクトップパス:C:\Users\\Desktopサンプルファイル名:sample.csvを結合してデスクトップにある「sample.csv」を指定するパスC:\Users\\Desktop\sample.csvの生成を例として説明する文... 2023.03.08 python
python python デスクトップパス 取得 os.path.expanduser('~\Desktop')使い方import osdesktop_path = os.path.expanduser('~\Desktop')print(desktop_p... 2023.03.07 python