2 lines
95 B
Python
2 lines
95 B
Python
|
|
myDict = { '1': 'a string', 1: 'an integer', 1.0: 'a floating point number', (1,): 'a tuple' }
|