The below piece of code when run on a spark 3 cluster
in python
colName = "count"
upperBound = 348113L
numPartitions = 10
lowerBound = 0L
fails with File "", line 2
upperBound = 348113L
^
SyntaxError: invalid syntax_
Below is the correct code
colName = "count"
upperBound = 348113
numPartitions = 10
lowerBound = 0