What is the third quartile value for the variable “lastEvaluvation”? For data science using Python in Anaconda - Jupyter

#import the library Pandas
import pandas as pd

#Put the People Charm case.csv dataset on Root Directory
#Read the dataset 
data = pd.read_csv('People Charm case.csv')

#What is the third quartile value for the variable “lastEvaluvation”?

#=====================================

#   Third Quartile Value

#=====================================
summary_num = data.describe()
print(summary_num)



Output:-