user_id,name,lastname
100288,Petr,Ivanov
100289,Egor,Petrov
...
df_csv1 = pd.read_csv(
r'name.csv',
delimiter=',',
)
import pandas as pd
CSV = 'test.csv'
with open(CSV, 'r', encoding='utf-8') as f:
df = pd.read_csv(f)
row = df[df['user_id'] == 100289]