ok so basically I am asking the question of their name I want this to be one input rather than Forename and Surname.
Now is there any way of splitting this name? and
name = "Thomas Winter" first, last = name.split() print("First = {first}".format(first=first)) #First = Thomas print("Last = {last}".format(last=" ".join(last))) #Last = Winter