In [6]:
def three(x,y,z):
    x,y,z=eval(input("Please enter three values: "))
    lst = []
    lst.append(x,y,z)
    print(lst)

In [ ]:


In [ ]: