Home > Backend Development > Python Tutorial > Does python dictionary support bidirectional indexing?

Does python dictionary support bidirectional indexing?

anonymity
Release: 2019-06-15 13:20:29
Original
11387 people have browsed it

The dictionary in Python is another mutable container model and can store any type of object. Each key-value (key=>value) pair in the dictionary is separated by a colon (:), and each pair is separated by a comma (,). The entire dictionary is included in curly braces ({}), and the dictionary is unordered. , press the key to get the value.

Does python dictionary support bidirectional indexing?

The dictionary module provides three classes to handle some operations of one-to-one mapping types

'bidict', 'inverted', 'namedbidict'

>>> import bidict
>>> dir(bidict)
['MutableMapping', '_LEGALNAMEPAT', '_LEGALNAMERE', '__builtins__', '__doc__', 
'__file__', '__name__', '__package__', 'bidict', 'inverted', 'namedbidict', 're', 'wraps']
Copy after login

1.bidict class:

>>> from bidict import bidict
>>> D=bidict({'a':'b'})
>>> D['a']
'b'
>>> D[:'b']
'a'
>>> ~D        #反转字典
bidict({'b': 'a'})
>>> dict(D)    #转为普通字典
{'a': 'b'}
>>> D['c']='c'   #添加元素,普通字典的方法都可以用
>>> D
bidict({'a': 'b', 'c': 'c'})
Copy after login

2.inverted class, invert the key value of the dictionary

>>> seq = [(1, 'one'), (2, 'two'), (3, 'three')]
>>> list(inverted(seq))
    [('one', 1), ('two', 2), ('three', 3)]
Copy after login

3.namedbidict(mapname, fwdname, invname):

>>> CoupleMap = namedbidict('CoupleMap', 'husbands', 'wives')
>>> famous = CoupleMap({'bill': 'hillary'})
>>> famous.husbands['bill']
'hillary'
>>> famous.wives['hillary']
'bill'
>>> famous.husbands['barack'] = 'michelle'
>>> del famous.wives['hillary']
>>> famous
CoupleMap({'barack': 'michelle'})
Copy after login

The above is the detailed content of Does python dictionary support bidirectional indexing?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template