Example & Tutorial understanding programming in easy ways.

How we can create a dictionary in Python ?

d={1:"First",2:"Second",3:"Third"}

print(d)

// output is {1:"First",2:"secod',3:"Third"}

Read More →