How to read string row in python?
I got a football csv file.
https://www.football-data.co.uk/mmz4281/1920/F1.csv I would like to retrieve all the lines where there is the PS Germain.
import pandas as pd
df = pd.read_csv('F1.csv')
dh = df[['Date','HomeTeam','AwayTeam','FTHG','FTAG']]
dh.head()