read csv go to value in column "hello" get value in python

main.py
import pandas as pd

# Read the CSV file
df = pd.read_csv('your_file.csv')

# Get the value in column "hello" at a specific row
value = df.loc[row_number, 'hello']
164 chars
8 lines

related categories

gistlibby LogSnag