Skip to content

Instantly share code, notes, and snippets.

@kumaotto
kumaotto / tips.py
Last active December 23, 2023 10:19
Python Tips
# 複合キーを使用した辞書
tuple_dict = {
(1, 'test'): 'this is first test.',
(2, 'test'): 'this is secound test.',
}
print(tuple_dict[1, 'test']) # this is first test.
# クラスの継承ではなく委譲
@kumaotto
kumaotto / remove_spaces.sql
Last active December 23, 2023 07:54
Remove spaces in SQL
# If you want to search for data that includes spaces with spaces removed, try the following method
REPLACE(data, ' ', '')
# If you use Japanese, you also need to remove full-width space.
REPLACE(REPLACE(data, ' ', ''), ' ', '')
@kumaotto
kumaotto / arithmetic_tips.py
Last active December 23, 2023 07:25
Python Arithmetic Operators
# 絶対値
absolute_value = abs(-123)
print(absolute_value) # 123
# 商と剰余
div_mod = divmod(10, 3)
print(div_mod) # (3, 1)
# 累乗
power = pow(2, 3)