Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Creating a Dictionary

# Creating a Dictionary
# with Integer Keys
Dictionary = {0: 'Softhunt', 1: '.net', 2: 'By', 3: 'Ranjeet'}
print("
Dictionary with the use of Integer Keys: ")
print(Dictionary)

# Creating a Dictionary
# with Mixed keys
Dictionary = {'Name': 'Ranjeet Kumar Andani', 1: [0, 1, 2, 3, 4, 5]}
print("
Dictionary with the use of Mixed Keys: ")
print(Dictionary)
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #Creating #Dictionary
ADD COMMENT
Topic
Name
1+5 =