Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Was ist das Resultat von:What will be the output of:d = {'a': 5, 'b': 10}d['a'] = 15print(d)
d = {'a': 5, 'b': 10}
d['a'] = 15
print(d)
{'a': 15}
{'a': 5, 'b': 10}
Error
{'a': 15, 'b': 10}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!