Answers for "select specific cell of dataframe"

2

how to select a single cell in a pandas dataframe

# how to select a single cell in a pandas dataframe

import pandas as pd

old = pd.DataFrame({'A' : [4,5], 'B' : [10,20], 'C' : ['cell wanted',50], 'D' : [-30,-50]})
var = old['C'].values[0]

print(var)
Posted by: Guest on September-27-2021

Code answers related to "select specific cell of dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language