Tuples & Dictionaries

Descrição

Mapa Mental sobre Tuples & Dictionaries, criado por Aparna Dhirde em 17-03-2020.
Aparna Dhirde
Mapa Mental por Aparna Dhirde, atualizado more than 1 year ago
Aparna Dhirde
Criado por Aparna Dhirde quase 6 anos atrás
260
0

Resumo de Recurso

Tuples & Dictionaries
  1. Accessing Elements in a Tuple & Dictionary
    1. Examples
    2. Dictionary are Mutable
      1. Examples
      2. Tuple & Dictionary Operations
        1. Concatenation
          1. + Operator used
            1. Examples
          2. Repetition
            1. * Operator is used
              1. Examples
            2. Membership
              1. IN & Not in
                1. Examples
              2. Slicing
                1. Examples
              3. Traversing a Dictionary
                1. Dictionary traversal using for & while loop:
                  1. Examples
                2. Dictionary Manipulation
                  1. Examples
                  2. Creating a Dictionary
                    1. Examples
                    2. Dictionary Methods and Built-in Functions
                      1. len()
                        1. dict()
                          1. keys()
                            1. values()
                              1. items()
                                1. get()
                                  1. update()
                                    1. clear()
                                      1. del()
                                        1. Examples
                                        2. Tuple is Immutable
                                          1. Tuples Built in functions
                                            1. len()
                                              1. Examples
                                                1. tuple ()
                                                  1. count ()
                                                    1. index ()
                                                      1. sorted ()
                                                        1. min ()
                                                          1. max ()
                                                            1. sum ()
                                                            2. Nested tuples
                                                              1. tuple inside another tuple
                                                                1. Examples