KnowledgeBoat Logo
|

Informatics Practices

Find errors and rewrite the same after correcting the following code:

d1.key()

Python Dictionaries

3 Likes

Answer

The correct method to retrieve all keys from a dictionary is keys(), not key().

The corrected code is:

d1.keys()

Answered By

3 Likes


Related Questions