Explain the syntax for performing a join operation between two Spark DataFrames in Python.

bookmark

To perform a join operation between two Spark DataFrames in Python, you can use the join method with the following syntax:

python joinedDF = df1.join(df2, df1.column_name == df2.column_name, "join_type")