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 xor
s, the result you got in python is not the one you expect.
(In python, the exponentiation operator is **
)
5 Likes