So to read an CSV as dataframe you need:
import pandas as pd
df = pd.read_csv("filename.csv")
Next, I will generate a dummy df and show you how to get the US users and then print their emails in a list:
df= pd.DataFrame({"Name":['jhon','brad','james'], "Country":['US','UK','US'],
"email":['john@fake.com','brad@fake.com','james@fake.com']})
US_USERS = df.loc[df['Country']=='US']
US_emails = df['email'].tolist()
print(US_USERS)
print(US_emails)
you should get:
Name Country email
0 jhon US john@fake.com
2 james US james@fake.com
['john@fake.com', 'brad@fake.com', 'james@fake.com']