culTest

    One of the 50 questions in this topic

    How much do you know about Python?

    What data structure in Python stores elements in key-value pairs?

    Answers

    Lista
    Tupla
    Conjunto (set)
    DiccionarioCorrect

    Dictionaries store data in key-value pairs, where each key must be unique and immutable. They are defined with braces: {'name': 'John', 'age': 30}. They are very efficient structures for key-based searches, insertions and deletions. Starting with Python 3.7, dictionaries maintain insertion order, a feature that previously required OrderedDict.