import pandas as pd
# Create a sample dataframe
df = pd.DataFrame({'Name': ['John Smith', 'Jane Doe', 'Harry Potter']})
# Split the 'Name' column into 'First Name' and 'Last Name'
df[['First Name', 'Space', 'Last Name']] = df['Name'].str.partition(' ')
# Drop the 'Space' column
df.drop('Space', axis=1, inplace=True)
print(df)