I am learning python and Found that Exponetential Operation is Not performed using ^.
In python
2 ^ 3 != 8
as ^ is Used for Bitwise XOR operations. How can one perform Exponential Function ?
2 ^ 3 != 8
This doesnt Work.
I am learning python and Found that Exponetential Operation is Not performed using ^.
In python
2 ^ 3 != 8
as ^ is Used for Bitwise XOR operations. How can one perform Exponential Function ?
2 ^ 3 != 8
This doesnt Work.