M
Q. What is the output of the following program?
D = dict()
for i in range (3):
for j in range(2):
D[i] = j
print(D)
- Correct Answer - Option(B)
- Views: 123
- Filed under category Python
Discusssion
Login to discuss.