# Introduction In Python, you can easily find the minimum value in a list using the `min()` function. However, what if you also need to know the index of that minimum value? In this challenge, you will create a function that returns the index of the element with the minimum value in a list.
Click the virtual machine below to start practicing