数值的整数次方
Posted 277223178dudu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数值的整数次方相关的知识,希望对你有一定的参考价值。
题目描述
给定一个double类型的浮点数base和int类型的整数exponent。求base的exponent次方。
# -*- coding:utf-8 -*- class Solution: def Power(self, base, exponent): # write code here return base**exponent
以上是关于数值的整数次方的主要内容,如果未能解决你的问题,请参考以下文章