What is a syntactically correct way to update the key-value…
What is a syntactically correct way to update the key-value pair (1, ‘one’) to a different value in the following dictionary number? number = {1: ‘one’, 3: ‘THREE’, 90: ‘NINETY’}
What is a syntactically correct way to update the key-value…