The PySpark version of the strip function is called trim
Trim the spaces from both ends for the specified string column.
Make sure to import the function first and to put the column you are trimming inside your function.
The following should work:
from pyspark.sql.functions import trim
df = df.withColumn("Product", trim(df.Product))