From 18ad714bbfc990496eeb022ccef59059d7f72b36 Mon Sep 17 00:00:00 2001 From: Shivank Sharma <69038430+bluedefender070@users.noreply.github.com> Date: Wed, 30 Sep 2020 20:50:17 +0530 Subject: [PATCH] Update python_dictionary.py --- basic_examples/python_dictionary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basic_examples/python_dictionary.py b/basic_examples/python_dictionary.py index 78fdb95..cd96165 100755 --- a/basic_examples/python_dictionary.py +++ b/basic_examples/python_dictionary.py @@ -10,7 +10,7 @@ print "\nPrinting the phonebook" print phonebook print "\nPrinting joe's phone number" -phonebook['joe'] +print phonebook['joe'] print "\nAdding an element to the phonebook" phonebook['joel'] = '657'