Bag of ML Words

ML = Machine Learning, Music Love, and Miscellaneous things in daily Livings

2021-01-12から1日間の記事一覧

Python: print(f) (formated 文字列)

知りませんでした。いろいろな変数型が混在した文字列をprintするのが簡単になるっぽい。 Pythonのf文字列(フォーマット済み文字列リテラル)の使い方 | note.nkmk.me やってみる。 >>> a = 123>>> a123>>> b = "abc">>> b'abc'>>> c = "あいう">>> c'あい…