SQL jak odpowiednik w Python
//Usage of string contains with dataframe
df_t['pName'].str.contains(str, case=True)
//show data inside a dataframe that contains "Lotion" from the column pName
df_t[df_t['pName'].str.contains("Lotion", case=True)]['pName']
Clean Curlew