✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
rdd = sc.parallelize(['cat', 'horse', 'elephant'])res = rdd.map(lambda x: len(x)).filter(lambda x: x < 6).collect()
Яким буде результат
res?