#!/usr/bin/python. def modexp(base, pow , mod):. exponent = 1. i = 0. while i < pow : exponent = (exponent * base) % mod. i + = 1.
確定! 回上一頁