Dictionaries
- Refer Here for dictionaries
- This is collection of key values
- syntax
{'key1': 'value1' , ..... }
- Refer Here for notebook
strings
- python strings are unicode
x = "hello"

- in python a string can be in single, double or triple quotes
x = "hello"
x = 'hello'
x = """hello"""
x = '''hello'''
- triple quotes support multi line
x = """Hello
How are you
are you there
"""
