Dictionary

image.png

info = {
"key" : "value",
"name" : "apanacollage",
"learning" : "python",
}
print(info)

info = {
    "name" : "cpandu",
    "age" : "lund",
    
}
print(info)
print(info["name"] = "geetha"

nested dictionary

info = {
"hi" : "hello",
"sub" : {
"eng" : "23",
"en" : "23",
"e" : "23",
}

image.png

sets