Report Bug
Qus :

What will be the output of the following Python code?

a={'B':5,'A':9,'C':7}
print(sorted(a))

Qus

निम्नलिखित Python कोड का आउटपुट क्या होगा?

a={'B':5,'A':9,'C':7}
print(sorted(a))


A. [‘A’,’B’,’C’]
B. [‘B’,’C’,’A’]
C. [5,7,9]
D. [9,5,7]


Solution
A. [‘A’,’B’,’C’]



Explanation
Return a new sorted list of keys in the dictionary.



Report Bug