Long Math Operation result is 0, In Python isn't

Use BigInt, e.g by: big"234"^23423.
Also note, that in python the ^ operator is the xor operator, while in julia it is the exponentiation operator.
So unless you actually want xors, the result you got in python is not the one you expect.
(In python, the exponentiation operator is **)

5 Likes