Python 3.10.4 (tags/v3.10.4:9d38120, Mar 23 2022, 23:13:41) [MSC v.1929 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
DreamPie 1.2.1
>>> xs = {
... 1: 'v1',
... 'dvě': 2,
... (3, 'tři'): '666',
... }
>>> xs[1]
0: 'v1'
>>> xs['dvě']
1: 2
>>> xs[(3, 'tři')]
2: '666'
>>> xs[3, 'tři']
3: '666'
>>> hash(1)
4: 1
>>> hash(1.0)
5: 1
>>> hash('dvě')
6: 5226586433436527064
>>> hash((3, 'tři'))
7: -3303286360562632259
>>>