Dictionaries In Python

'''
{} - Dictionary in Python is a Key Value(s) Pair
[] - List
() - Tuple
'''
MyDictData = {'Name':['Durgesh','Indrasen', 'Chandan Pandey', 'Premchand'],'CGPA':[9.83,9.79,9.62,7.25]}
print(MyDictData)

Comments

Popular posts from this blog

Swayamvar Program In Python

VALDATION IN JAVASCRIPT