Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

create a dictionary in python

""" In a dictionary, the first value of an element is the *key* and
 the other one is the *value* """
new_dict = {
				'name': 'Alex',
  				'age': 21
			}

""" You can also use different data type for key in the same dictionary """
new_dict = {
				'name': 'Alex',
  				1: 21,
                2: False
			}
 
PREVIOUS NEXT
Tagged: #create #dictionary #python
ADD COMMENT
Topic
Name
8+3 =