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
You can use str.find() for this.
str.find()
x=input("enter your name ") l=x.find(" ") print("your first name is",x[:l]) print("your last name is",x[l:])