原始數字資料 a = [3, 4, 0, 1, 3, 0, 0, 1, 4, 4] # 不重複數字與出現次數 unique, counts = numpy.unique(a, return_counts=True) print("各數字出現次數:", ...
確定! 回上一頁