题解 | 牛客网大佬之间的差距
牛客网大佬之间的差距
https://www.nowcoder.com/practice/7487bcc22a0a487da941f357ab6b5d8e
import pandas as pd
df = pd.read_csv('Nowcoder.csv')
nmax = df[df['Level'] == 7]['Achievement_value'].max()
nmin = df[df['Level'] == 7]['Achievement_value'].min()
diff_val = round(nmax - nmin,0)
print(diff_val)

