这句报'DataFrame' object has no attribute 'sort'错误,是什么原因
print(df.sort_values(by="C"))
在评论发现回答了,改为 print(df.sort_values('C'))