From 79ccb76345556b286454d421d9fdc0b2098f8786 Mon Sep 17 00:00:00 2001 From: Manas Bhilare <69368910+Manas146@users.noreply.github.com> Date: Fri, 8 Oct 2021 11:21:02 +0530 Subject: [PATCH] Create Create_your_dictionary.py --- Python/Language/Create_your_dictionary.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Python/Language/Create_your_dictionary.py diff --git a/Python/Language/Create_your_dictionary.py b/Python/Language/Create_your_dictionary.py new file mode 100644 index 0000000..1743e20 --- /dev/null +++ b/Python/Language/Create_your_dictionary.py @@ -0,0 +1,6 @@ +thisdict = { + "brand": "Ford", + "model": "Mustang", + "year": 1964 +} +print(thisdict)