BlockPy: #43.1) Dictionaries vs. Tuples Create a dictionary to store the dimensions for a box. Then, create a tuple to store the dimensions. Finally, give an example of accessing the same value in both the dictionary and tuple representation and printing them. You should only print one value from each of the two data structures. Length: 6 Width: 8 Height: 4

Respuesta :

Answer:

#Define the dictionary.

a_dictionary = {"Length": 6,"Width": 8,"Height": 4}

#Define the tuple.

a_tuple = (6,8,4)

print("The length of the box in the dictionary is: ", a_dictionary["Length"])  

print("The length of the box in the tuple is: ", a_tuple[0])