Python dictionary keys() Method
Advertisements
Description
The method keys() returns a list of all the available keys in the dictionary.
Syntax
Following is the syntax for keys() method
dict.keys()
Parameters
NA
Return Value
This method returns a list of all the available keys in the dictionary.
Example
The following example shows the usage of keys() method.
#!/usr/bin/python
dict = {'Name': 'Zara', 'Age': 7}
print "Value : %s" % dict.keys()
Let us compile and run the above program, this will produce the following result:
Value : ['Age', 'Name']