300+ câu Trắc nghiệm Học máy cơ bản có đáp án - Phần 9

Xác định kết quả cho đoạn code sau. import collections c = collections.Counter() print(c.most_common(1))

16/25

Xác định kết quả cho đoạn code sau.

import collections

c = collections.Counter()

print(c.most_common(1))

[(4, 4)]

[(2, 2)]

[(4, 4), (2, 2)]

Error

Giải thích

Chọn đáp án D