Python pythonでExcel作成 # 桁区切りのカンマありの整数 format_int = {'num_format': '#,##0', 'align': 'right'} # 小数点以下2桁 format_flt = {'num_format': '#,##0.00'... 2021.02.27 Python
Python Pythonのdictの存在しないkey対策 d = {'k0': 'v0', 'k1': 'v1',} # 以下2つは同じで、'v0' を返す d['k0'] d.get('k0') # 以下はエラー d['k2'] # getを使うと、keyが存在しない場... 2021.02.16 Python
Python 加算器 Python-likeにかく 半加算器:入力A, B -> 和S, 桁上がりC def HA(A, B): S = XOR(A, B) C = AND(A, B) return S, C 全... 2021.02.02 Python
Python DataFrameとCOALESCE # df1(id, col) # df2(id, col)やりたきこと:df1をdf2で更新 -- SQLSELECTCOALESCE(b.id, a.id) AS id, COALESCE(b.col, a.col) AS col... 2020.10.29 Python
Python WindowsでProphetを使う方法 Pythonで Prophet を使ってみたかったのですが、インストールが大変だったのでメモ。WindowsではおそらくC++コンパイラか何かが原因でインストールが難しい。そこで、Dockerを使うことにしました。 Dockerf... 2020.10.03 Python
Kotlin アプリで撮った写真の名前を変える方法 AndroidManifest.xmlを変更する必要はない。 MainActivity.kt package com.sample.android.camerasample import android.content.Co... 2020.10.03 Kotlin