# make_pi Return an int list length 3 containing the first 3 digits of pi, `[3, 1, 4]`. This exercise was taken from [codingbat.com](https://codingbat.com/prob/p167011) and has been adapted for the Python language. There are many great programming exercises there, but the majority are created for Java. ### Test 1 **Input:** ``` ``` **Output:** ``` [3, 1, 4] ```