pyspark.RDD.foreach# RDD.foreach(f)[source]# Applies a function to all elements of this RDD. New in version 0.7.0. Parameters ffunctiona function applied to each element See also RDD.foreachPartition() pyspark.sql.DataFrame.foreach() pyspark.sql.DataFrame.foreachPartition() Examples >>> def f(x): print(x) ... >>> sc.parallelize([1, 2, 3, 4, 5]).foreach(f)