pyspark.sql.Column.bitwiseXOR

Column.bitwiseXOR(other)

Compute bitwise XOR of this expression with another expression.

Parameters
other

a value or Column to calculate bitwise xor(^) with this Column.

Examples

>>> from pyspark.sql import Row
>>> df = spark.createDataFrame([Row(a=170, b=75)])
>>> df.select(df.a.bitwiseXOR(df.b)).collect()
[Row((a ^ b)=225)]