Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to change values of dictionary in python

python = {
  "year released": 2001,
  "creater":"Guido Van Rossum"
}
print(python)
python["year released"] = 1991
print(python)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #change #values #dictionary #python
ADD COMMENT
Topic
Name
4+3 =