Answer:
Following are the program in the Python Programming Language.
#define function.
def album():
#set dictionary data type variable
album_artists = dict()
#Initialize the key and value in the dictionary
album_artists["Live It Out"] = "Metric"
#dispaly the dictionary.
print(album_artists)
#call the function
album()
Output:
{'Live It Out': 'Metric'}
Explanation:
Here, we define function "album()" and inside the function.
Finally, call the following function "album()".