pyspark.RDD.count# RDD.count()[source]# Return the number of elements in this RDD. New in version 0.7.0. Returns intthe number of elements See also RDD.countApprox() pyspark.sql.DataFrame.count() Examples >>> sc.parallelize([2, 3, 4]).count() 3