「Python」辞書の要素を出力する
サンプルコード
cftdict = { "key01": "111", "key02": "222", "key03": 333 } print(cftdict)
結果
{'key01’: '111’, 'key02’: '222’, 'key03’: 333}
Coding Changes the World
サンプルコード
cftdict = { "key01": "111", "key02": "222", "key03": 333 } print(cftdict)
結果
{'key01’: '111’, 'key02’: '222’, 'key03’: 333}