I want to use input() to call one of three possible lists (a, b, or c) and then run functions on that chosen list.
At one point I had this working, so not sure what I changed. I think it's an issue with the way it's declared.
a = ["1","2","3"]
b = ["4","5","6"]
c = ["7","8","9"]
choice = input("Choose a, b, or c")
print choice[0]
some_function(choice)
If input is a I want to get "1" as the output.