Making a much shorter Zoidac calculator using lists

Remember our Chinese restaurant problem from earlier in the semester?

 

At that time we could only solve this using a long list of conditionals.

But there is a MUCH easier way.

Write a Python function that conforms to the following BUT, does this without using any conditionals at all. Instead, define a list containing the 12 different animals in the list. If you put the animals in the list in the right order you can use the index of the list and the modulo math of the year to work together to be a "simple" lookup.