Drag from here
pairs
=
[(
"pig"
,
"oink"
),
(
"cow"
,
"moo"
)]
animals
=
dict
(
pairs
)
print
(
animals
.
get
(
"cow"
))
print
(
animals
.
get
(
"pig"
))
Construct your solution here
New instance
Get feedback
Construct a program that prints out moo and oink, in that order.