def power(x,n): s=1 for i in range(0,x): s*=n return sprint(power(5,2)) #调用函数,打印2的5次方
有现成的pow不用,非要用循环,直接pow(n,x)不是省事多了
04-29 56阅读
03-10 109阅读
04-20 397阅读
05-01 107阅读
05-02 151阅读
10-28 92阅读
06-15 112阅读
07-30 829阅读
05-17 270阅读
06-23 134阅读