标签: python-3.x
print("Sample counts per class:\n{}".format({n: v for n,v in zip(cancer.target_names, np.bincount(cancer.target))}))
我主要想了解for循环的语法以及“ \ n {}”的含义。 谢谢!