Python

Pythonリファレンス

文字列操作関連リファレンス

文字列関連 文字列の最後が指定された文字列か? if str.endswith('jpg'): ⇒strが'jpg'で終わっている(strがaaa.jpgなら真、aaa.txtなら偽) 書式付き文...
Pythonリファレンス

BeautifulSoup関連リファレンス

BeautifulSoup soupを生成 from bs4 import BeautifulSoup response = requests.get(url) response.encoding = res...
Pythonリファレンス

httpアクセス関連リファレンス

httpアクセス関連 urljoinとurllib.requestでGET import urllib.request from urllib.parse import urljoin url = urljoin("...
Pythonリファレンス

ZIPファイル操作関連リファレンス

ZIPファイル操作 ZIPファイルの解凍 import zipfile zipfile = './zipfile.zip' with zipfile.ZipFile(zipfile) as zip: ...
Pythonリファレンス

ファイル読み書き関連リファレンス

ファイル読み書き 読み込みオープン with open(path) as f: f.read() 書き込みオープン with open('./param.json', 'w') as...
Pythonリファレンス

ファイルのコピーや移動、削除

ファイルのコピーや移動、削除 コピー(更新日など属性ごと) import shutil shutil.copy2(srcpath, destpath) 移動 import shutil s...
Pythonリファレンス

ファイルパスやディレクトリ関連のリファレンス

ファイルパスやディレクトリ関連 パスの結合 import io path = os.path.join(wp_path, 'wp-content/plugins') リネーム os.rename...
Pythonリファレンス

制御文関連リファレンス

制御文 序数のfor文 for i in range(num): ⇒ 0~(num-1) for i in range(1, 1001): ⇒ 1~1000 序数とリストのfor文
Pythonリファレンス

変数関連Tips

変数関連Tips リスト 値の重複のないリストを作るには noduplist = list(set(duplist)) リストから削除 list.remove(item) リストの指定した位置...
Pythonリファレンス

自分が使ったPythonのリファレンス

Pythonのリファレンス 変数関連Tips 制御文関連リファレンス ファイルパスやディレクトリ関連のリファレンス ファイルのコピーや移動、削除 ファイル読み書き関連リファレンス ZIPファイル操作関連リファレンス htt...
タイトルとURLをコピーしました