Answers for "get the last element of a pandas series"

2

pandas how to get last index

#using iget() function
df['column'].iget(-1)

#using index
df['date'][df.index[-1]]

#using iloc
df["date"].iloc[-1]
Posted by: Guest on April-26-2020
0

call for a last number in series python

print (df['col1'].iloc[-1])
3
print (df['col1'].iat[-1])
3
Posted by: Guest on August-01-2020
0

call for a last number in series python

print (df.iloc[-1, df.columns.get_loc('col1')])
3
print (df.iat[-1, df.columns.get_loc('col1')])
3
Posted by: Guest on August-01-2020

Code answers related to "get the last element of a pandas series"

Python Answers by Framework

Browse Popular Code Answers by Language