import pandas as pd
df[["First Name", "Last Name"]] = df["Full Name"].str.split(' ', 1, expand=True)
as you see in this image that it add the split columns at the end of the dataset and i want them to be at same position. Where the (Full Name) located
can anyone solve this problem in easy way
The problem was that it will be added at end of the dataset and I don't want this.