So, If i would like to calculate the value of 6^8 mod 5 using the pow function, what should I put in a line??
In the assumption that You don't need to import it first
I know that pow is used like pow (x, y) = pow (6, 8) = 6^8 and
My guess is
mod.pow(6,8)
Thank you!