# 5.使用 map 算子完成以上需求 rdd = rdd.map(lambda x: x ** 2 if x % 2 == 0 else x ** 3) # 6.使用rdd.collect() 收集完成 map 转换的元素 print(rdd.collect()) # 7.停止 SparkContext sc.stop() #*** End ***# 第2关:Transformation – mapPartitions # -*- coding: UTF-8 -...