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', 'Last Name']] = df['Name'].str.extract('(\w+)\s(\w+)', expand=True)

print(df)