I'm searching a DF using:
df.loc[df['Ticker'] == 'ibm'
The problem is df['Ticker'] is formated with another value after it(for example 'ibm US').
normally for string I can do something like .split[" "][0] to find the match but it doesn't work for my pandas search above(df.loc[df['Ticker'].split[" "][0] == 'ibm' - fails with AttributeError: 'Series' object has no attribute 'split').
What can I do to achieve my goal?