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