Pythonと競馬

参考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

さらにまとまってた

http://python-remrin.hatenadiary.jp/entry/2017/04/24/174405

リストのソート

.sort()メソッド

https://note.nkmk.me/python-list-sort-sorted/

数値を桁別表示・・・%(余りを取得)

https://ja.stackoverflow.com/questions/26837/python-%E3%81%A7-%E6%95%B0%E5%80%A4%E3%82%92%E6%A1%81%E5%88%A5%E3%81%AB%E5%8F%96%E5%BE%97%E3%81%99%E3%82%8B%E3%81%AB%E3%81%AF

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://ja.stackoverflow.com/questions/22510/%E3%82%B9%E3%83%9A%E3%83%BC%E3%82%B9%E3%82%92%E5%90%AB%E3%82%93%E3%81%A0%E3%82%AF%E3%83%A9%E3%82%B9%E5%90%8D%E3%82%92-jquery-%E3%81%A7%E6%8C%87%E5%AE%9A%E3%81%A7%E3%81%8D%E3%81%AA%E3%81%84

四捨五入・切り捨て・切り上げ

https://www.deep-blog.jp/engineer/archives/4322/

Macターミナルで強制終了(無限ループ解除)

Control+C

https://oshiete.goo.ne.jp/qa/4396203.html

シェアする

  • このエントリーをはてなブックマークに追加

フォローする