From 2999da835da4acd70246f027d13f4ded11c9fa24 Mon Sep 17 00:00:00 2001 From: NilamaniPalaspagar Date: Sat, 22 Feb 2025 00:13:08 +0530 Subject: [PATCH] Update dictionary.py --- exercise/dictionary.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/exercise/dictionary.py b/exercise/dictionary.py index 0fe7ec6..bc516f4 100644 --- a/exercise/dictionary.py +++ b/exercise/dictionary.py @@ -4,7 +4,9 @@ "arch": "Open Source desktop and client distribution." } print(myword.keys()) +print(myword.values()) + print("Check Keys name from above line.") print("Enter your choice name:", end='') tia1 = input() -print(myword[tia1]) \ No newline at end of file +print(myword[tia1])