参考URL置き場
複数数値の入力
input().rstrip().split()
https://teratail.com/questions/66859
.rstrip()は右側の空白を除去
http://www.isl.ne.jp/pcsp/python/python19.html#forth
.split()は区切り指定
https://qiita.com/Morio/items/38701038ad098dd5dc3d
さらにまとまってた
リストのソート
.sort()メソッド
https://note.nkmk.me/python-list-sort-sorted/
数値を桁別表示・・・%(余りを取得)
selenium逆引き辞典
http://www.seleniumqref.com/api/webdriver_gyaku.html
リストのリスト
for文+.append([,])
https://qiita.com/clarinet758/items/33bed8bb2907c68b5242
文字列の途中に変数を組み込む出力
%d(整数)など
https://note.nkmk.me/python-print-basic/
複数ページ
selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {“method”:”css selector”,”selector”:”span.race:nth-of-type(1)”}
for i in driver.find_elements_by_css_selector('span.race')
ではページ離れると駄目なので、ページ戻るごとに読み込ませる
len = len(elements)
for i in range(len):
elements = driver.find_elements_by_css_selector('span.race')
elements[i].click()
scrapyとseleniumの合わせ技
https://casualdevelopers.com/tech-tips/lets-get-started-with-scrapy-and-selenium-on-python/
文字列内検索
if “文字” in “文字列”
http://d.hatena.ne.jp/laco0416/20121022/1350907756
プログラム終了の関数
import sys
sys.exit()
https://pg-chain.com/python-exit-return
class名に空白あり
.を続ける(class名が複数扱い)
四捨五入・切り捨て・切り上げ
https://www.deep-blog.jp/engineer/archives/4322/
Macターミナルで強制終了(無限ループ解除)
Control+C