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