Muliple Where condition vs AND && in Pyspark

User16826994223
Databricks Employee
Databricks Employee

.where((col('state')==state) & (col('month')>startmonth)

I can do the where conditions both ways. I think the one below add readability. Is there any other difference and which is the best?

.where(col('state')==state)

.where(col('month')>startmonth)

User16826994223
Databricks Employee
Databricks Employee

You can use explain to see what type of physical and logical plans are getting created . This is the best way to see difference , but as mentioned in the question , it should give the same physical plan