Python

Thumbnail of post image 196

Python3.6から使えるようになったf-stringを使って,スマートにパスを生成しよう.

かっこ悪いパスの生成from datetime import datetimenow = datetime.now().strfti ...

Python,Spyder

Thumbnail of post image 169

Spyderを使っていて,TABキーを押したとき,補完ではなくインデントされる場合は,

Preferences > Editor > Tab always indent のチェックを外す.

Python,Ubuntu

Thumbnail of post image 093

$ sudo mv/usr/bin/python/usr/bin/python2$ sudo ln -s/usr/bin/python3/usr/bin/python$ python --version

Python2とPython3が ...

Python

Thumbnail of post image 054

>> import requests>> url = "">> r = requests.get(url)>> __attrs____bool____class____delattr____d ...

Python

Thumbnail of post image 100

import urllibfrom bs4 import BeautifulSoupif __name__ == "__main__":proxy = urllib.request.ProxyHandler({'http': '})open ...

Python

Thumbnail of post image 170

Python3.6から追加されたフォーマット済み文字列リテラルを便利に使ってるなあと思った事例をいくつか紹介.

今後も見つけるたびに追加していこうと思う.

Bashのように{hoge}で変数を使う

Kaggleで ...

Python

Thumbnail of post image 055

Kaggleのコードを読んでいると以下のような記法を見つけた.

def greeting(name: str) -> str:return 'Hello ' + name

ん? -> ってなんぞ?

調 ...

Python

Thumbnail of post image 177

pip install hoge --proxy

Python

Thumbnail of post image 080

導入
“r+” と “w+” と “a+” における挙動の違い“r+” の場合
“w+” の場合
&# ...

Python

Thumbnail of post image 007

with open("text.txt") as f:for line in f:print(line)

withを使いたくなければ,

f = open("text.txt")for line in f:print(line)f. ...