x = [1,2,3]
y = [5,6,7]
z = input("Enter which variable to use x or y: ")
now I want use the variable x or y depending on whether the input is "x" or "y"
x = [1,2,3]
y = [5,6,7]
z = input("Enter which variable to use x or y: ")
now I want use the variable x or y depending on whether the input is "x" or "y"