Chapter 10: Problem 12
What does the keys method return?
Short Answer
Expert verified
Answer: The "keys" method in Python is used with dictionaries to retrieve a set-like view object containing all the keys present in the dictionary. Here is a step-by-step example:
1. Create a dictionary:
```python
my_dict = {'apple': 1, 'banana': 2, 'orange': 3}
```
2. Retrieve the keys using the 'keys' method:
```python
keys_object = my_dict.keys()
```
3. Convert the keys object to a list:
```python
keys_list = list(keys_object)
```
4. Print the list of keys:
```python
print(keys_list)
```
This will output the list of keys: ['apple', 'banana', 'orange'].