its been a while since I worked in python. I have two lists (A and B). If the user types in 'A', I want the output to be list A.
I can't seem to remember how to do it.
person = input('List A or B?: ')
person = str(input())
A = ["Mark","Rob","Mary"]
B = [ "Alex","Mitch","Tyler"]
for x in A:
print x