Answers for "what is a dict object in python"

2

dict python

a = {'a': 123, 'b': 'test'}
Posted by: Guest on February-05-2021
0

python dict

>>> d = {}
>>> d
{}
>>> d = {'dict': 1, 'dictionary': 2}
>>> d
{'dict': 1, 'dictionary': 2}
Posted by: Guest on November-09-2021

Python Answers by Framework

Browse Popular Code Answers by Language