Power of Lists
- A list is type of container in Python that is used to store multiple datasets at the same time.
- Refer Here for the samples done.
- Basic List Operations: Refer Here for the official documentation of list operations
- Refer Here for some basic list operations performed
Dictionary
- A python Dictionary is an unordered collection of keys and values
- basic dictionary creation Refer Here