题解 | #快递站点信息#
快递站点信息
https://www.nowcoder.com/practice/c32d54b505c44133a575cb02993d0835
import pandas as pd df=pd.read_csv('Nowcoder.csv',dtype=object) print(df[ (df['Date']=='2022/6/18') & (df['Type'] == '1') ]['Destination']) # print(df.loc[ # (df['Date']=='2022/6/18') & (df['Type'] == '1') # , # ['Destination'] # ])