Answers for "select cell pandas"

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
5

df fetch value

val = d2['col_name'].values[0]
Posted by: Guest on April-07-2020
2

get cell pandas

value = df.iloc[row_index,column_index]
Posted by: Guest on October-03-2021

Browse Popular Code Answers by Language