Computer Science, asked by gonyokd354, 10 months ago

In the given example what is the output?Dict={'a': 1, 'c': 3, 'b': 2, 'd': 4}

Answers

Answered by rakeshchennupati143
2

the out put will be

{

'a' : 1

'c' : 3

'b' : 2

'd' : 4

}

the given code is in python, and initialized Dict is a dictionary type variable we can it by seeing the braces that are given to that variable, if you print a dictionary using print(Dict), then the output i have given will be printed on the screen

Similar questions