We'd like to help but you need to be a little more specific. Can you provide an example of what you've tried. Can you show us how you're reading in the data? Like Boris suggests, you'll likely want to do this using Pandas. Here's a snippet that will filter a dataframe on a column of your choosing:
import pandas as pd
import numpy as np
d = {'col1': [1, 2], 'col2': [3, 4]} # Should be your data import line...
df = pd.DataFrame(np.random.randint(low=0, high=10, size=(100, 2)),
columns=['sku','orderID'])
#%% Alternatively, load your data using Pandas by uncommenting the lines below
# df = pd.read_excel('path_to_your_file') #If using excel
# Method 1
filter1 = 6 #replace 6 with grey-shirt771
filter2 = 3 # replace this with another sku of interest
df_items_of_interest1 = df[(df['sku'] == filter1) | (df['sku'] == filter2)]
# Method 2
filter1 = 'sku == 6'
filter2 = 'sku == 3'
df_items_of_interest2 = df.query(filter1 + '|' + filter2)
# Method 3
df_items_of_interest3 = df[df['sku'].isin([6,3])]
Refer to this SO Post and the Pandas documentation for clarity.
I hope that helps. On behalf of the Stack Overflow community, I say welcome. To maximize the value you'll get from using this site (and to help us help you) try out some of these tips