We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0042d79 commit 269873aCopy full SHA for 269873a
2 files changed
python 2/koans/about_dictionaries.py
@@ -16,6 +16,8 @@ def test_creating_dictionaries(self):
16
self.assertEqual(__, len(empty_dict))
17
18
def test_dictionary_literals(self):
19
+ empty_dict = {}
20
+ self.assertEqual(dict, type(empty_dict))
21
babel_fish = {'one': "uno", 'two': "dos"}
22
self.assertEqual(__, len(babel_fish))
23
python 3/koans/about_dictionaries.py
@@ -15,6 +15,8 @@ def test_creating_dictionaries(self):
15
babel_fish = { 'one': "uno", 'two': "dos" }
0 commit comments