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)