100+ câu trắc nghiệm Học máy có đáp án - Phần 5

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

3/17

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 A