pyspark.sql.functions.
shiftleft
Shift the given value numBits left.
New in version 3.2.0.
Changed in version 3.4.0: Supports Spark Connect.
Column
input column of values to shift.
number of bits to shift.
shifted value.
Examples
>>> spark.createDataFrame([(21,)], ['a']).select(shiftleft('a', 1).alias('r')).collect() [Row(r=42)]