I want to output the result of a power operation, for example:
100**100
However instead of outputting:
100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
I want it to output a result which includes "e" in it:
1e+200
I have looked on other similar Stack Overflow questions, but I couldn't find a way for me to do this without defining another function for this.
Is there an inbuilt Python function to do this?