gistlib
main.pyimport 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 chars8 lines
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']
gistlibby LogSnag