下面 Python 代码中的 dictA 是 1-100 所有数及其对应的因数,此处仅列出其中一部分。
在横线处填上合适代码,实现只输出质数对应的因数()。
itm for itm in dictA if len(itm) > 2
K: V for K, V in dictA if len(V) > 2
K: V for K, V in dictA.items() if len(V) > 2
K: K.value for K in dictA if len(dictA[K]) > 2