Python {}を使って辞書(Dictionary)を空にするサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
{}を使う方法です。
具体的には、辞書に{}を代入します。
myDict = {}
使用例
numbers = { “one":1, “two":2, “three":3, “four":4, “five":5 }
numbers = {}
print(numbers)
実行結果
{}
Coding Changes the World
環境
Windows 11 Pro 64bit
Python 3.11
構文
{}を使う方法です。
具体的には、辞書に{}を代入します。
myDict = {}
使用例
numbers = { “one":1, “two":2, “three":3, “four":4, “five":5 }
numbers = {}
print(numbers)
実行結果
{}