4 Matching Annotations
  1. Sep 2020
    1. Chapter 11Dictionaries

      Dictionaries are like lists and values in dictionaries can be of any type. Every Value is mapped to an key jointly called as key value pair. Dictionaries have various built in functions like invert,etc. In Dictionaries, global variables can be created which can be accessed in function of the program.

    2. Lists are sequence of values which are mutable. Lists have many built in methods to perform variety of operations like append,sort,expand,etc. Lists can perform many operations with each other in different ways.

    3. Strings are list of characters which are immutable. Strings have many built in methods to perform variety of operations like lower case to upper case,finding of a characters in a string,etc. Strings are comparable with each other in many different ways.