はじめに
Pythonでこれやるにはどう書くんだっけ?ということをちまちままとめます。
そのうち大辞典になる予定です。
目次
- ファイル操作
1-1.ファイルの存在確認
1-2.ディレクトリの存在確認 - テキスト操作
2-1.末尾の文字を削除 - pythonプログラムのexe化(#Chapter4)
ファイルの存在確認
chap1.py
import os
path = 'file.txt'
is_file_exist = os.path.isfile(path)
if is_file_exist:
# ファイルは存在する
print(f"{path} is a file.")
else:
# パスが存在しないかファイルではない
print(f"{path} is not exist.")
ディレクトリの存在確認
chap2.py
import os
path = 'dir_name'
is_dir_exist = os.path.isdir(path)
if is_dir_exist:
# ディレクトリは存在する
print(f"{path} is a directory.")
else:
# パスが存在しないかディレクトリではない
print(f"{path} is not a directory.")
末尾の文字を削除
chap3.py
string = '1234567890'
str = string.rstrip('0')
print(str)
pythonプログラムのexe化
[pycharm]
File→Setting→Python Interpreter→+ボタンを押す→pyinstaller→install package
pycharmの左下でterminalタブを開き
PS C:\Users\xxx\PycharmProjects\xxx > pyinstaller main.py --onefile