[lang-ref] ( init_dict ) ( python )

def test_init_dict():
	# { k1: v1, .. }
    d = {
        'A': 1,
        'B': 2,
        'C': 3,
    }
    assert len(d.keys()) == 3