How can pandas read csv files to avoid the impact of scientific counting on grouping?

clipboard.png
csv
`import numpy as np
import pandas as pd
f=open("G:XueYegrades.csv","rb")
df=pd.read_csv(f,low_memory=False,usecols=[0,1,3,4,5,7,8,15,16])
group=df.groupby(["xh","xm"],sort=False)["xf"]
print(group.sum())
`

clipboard.png

as a result, he counted the student numbers of those students with the same scientific count in the same group. I would like to ask how to solve this problem?
my "xh" data type is np.float64.

Mar.05,2021
Menu