I'm trying to get my list to slice the first 3 items off. I interactively ask for 7 names and output the original list first. When I ask the code to slice the list, it seems to have no knowledge of names inside the list.
#Example names for testing:
#Liam Noah Eli Logan Mason James Aiden
names=[input("Please enter 7 names: ")]
for a in names:
print(a)
for b in names:
print(b[3:])