snowflake.snowpark.functions.bitxor¶
- snowflake.snowpark.functions.bitxor(expr1: Union[snowflake.snowpark.column.Column, str], expr2: Union[snowflake.snowpark.column.Column, str], padside: Optional[str] = None) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/src/snowflake/snowpark/_functions/scalar_functions.py#L256-L292)¶
Returns the bitwise XOR of two numeric expressions.
- Parameters:
expr1 – The first numeric expression.
expr2 – The second numeric expression.
padside – Optional padding side specification.
Example:
- Additional Example with padside parameter::