运行下列程序,输出结果正确的一项是?
ds = {'aa':2,'bb':4,'cc':9,'dd':6}
print(ds.popitem(), len(ds))
('aa', 2) 4
('dd', 6) 4
('bb', 2) 3
('dd', 6) 3