df['business location'] #column i want to split into 2 columns :
df['longitude'] #and
df['latitude']
df[['longitude','latitude']] = sf['Business Location'].str.split(',')
is giving me error: ValueError: Must have equal len keys and value when setting with an iterable
how do I split?