From b720a107bf015dfece29b2c18e3a800c7f1138a0 Mon Sep 17 00:00:00 2001 From: Sandra Laguna Date: Thu, 6 Oct 2022 17:31:01 +0200 Subject: [PATCH] add Dictionary --- Python3-Learn/python3-Dictionary_sandra-laguna.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Python3-Learn/python3-Dictionary_sandra-laguna.py diff --git a/Python3-Learn/python3-Dictionary_sandra-laguna.py b/Python3-Learn/python3-Dictionary_sandra-laguna.py new file mode 100644 index 00000000..8e7b3280 --- /dev/null +++ b/Python3-Learn/python3-Dictionary_sandra-laguna.py @@ -0,0 +1,13 @@ +# AUTHOR: Sandra Laguna +# Python3 Concept: Dictionary +# GITHUB: https://github.com/sandra-laguna + +# Python program to illustrate a Dictionary + +# Creates a empty list +Dict = [] + +# Putting integer values +Dict = {1: 'Happy - ', 2: 'Hacktoberfest - ', 3: '2022'} + +print(Dict) \ No newline at end of file