Retornar valor de um dicionario

Existe algum modo de pegar o valor de um dicionario passando a chave?

dict = {'Name': 'Zabra', 'Age': 7}
print "Value : %s" %  dict.get('Age')

https://www.tutorialspoint.com/python/dictionary_get.htm

Diretão vai lindo também

print dict['Age']

https://docs.python.org/2/tutorial/datastructures.html
https://docs.python.org/3.6/tutorial/datastructures.html