Python Python PyTouchBar MacのTkinter(TK)/PyGameのアプリでTouch Barに対応してみる(5) 定数 2021-11-22 hawk タカの技術ブログ アイテムの使用をかんたんにするために、いくつかの定数が定義されている。 PyTouchBar.Color greenbluer …
Python Python PyTouchBar MacのTkinter(TK)/PyGameのアプリでTouch Barに対応してみる(4) TouchBarItems(3) 2021-11-21 hawk タカの技術ブログ タッチバーにアイテムを追加するには、PyTouchBar.set_touchbar([item1, item2, …])という関数を使う。 …
Python Python PyTouchBar MacのTkinter(TK)/PyGameのアプリでTouch Barに対応してみる(3) TouchBarItems(2) 2021-11-20 hawk タカの技術ブログ タッチバーにアイテムを追加するには、PyTouchBar.set_touchbar([item1, item2, …])という関数を使う。 …
Python Python PyTouchBar MacのTkinter(TK)/PyGameのアプリでTouch Barに対応してみる(2) TouchBarItems(1) 2021-11-19 hawk タカの技術ブログ タッチバーにアイテムを追加するには、PyTouchBar.set_touchbar([item1, item2, …])という関数を使う。 …
Python Python PyTouchBar MacのTkinter(TK)/PyGameのアプリでTouch Barに対応してみる(1) 2021-11-18 hawk タカの技術ブログ ふと、MacのTouch Barにかんたんに対応できるのか気になったため、メモ。 PythonのNSTouchBarラッパーのPyT …
Python Python クラスで比較演算子をoverloadingする 2021-11-17 hawk タカの技術ブログ operator.__lt__(a, b)operator.__le__(a, b)operator.__eq__(a, b)operat …
Python Python クラスで四則演算子をoverloadingする 2021-11-16 hawk タカの技術ブログ 演算子に対応した関数を実装する。 operator.__add__ (a, b) 数値 a および b について a + b を返し …
Python Python 文字列が空白文字だけか確認 str.isspace() 2021-11-15 hawk タカの技術ブログ 文字列が空白文字だけからなり、かつ 1 文字以上ある場合には True を返し、そうでない場合は False を返します。Unicode …
Python Python 日付の差分で日付のリストを作る 2021-11-14 hawk タカの技術ブログ from datetime import datetime as dt from datetime import timedelta start_date = dt.strpt …
Python Python 文字列の長さを比較数する 2021-11-13 hawk タカの技術ブログ a = "xyz" b = "xy" print(a > b) # True b = "xyz" print(a …