📜  python代码示例中的指数函数

📅  最后修改于: 2022-03-11 14:45:15.213000             🧑  作者: Mango

代码示例1
def raise_to_power(base_num * pow_num):
  result = 1
  for index in range(pow_num):
    result = result * base_num
  return result

print(raise_to_power(2, 3))

# Then print the answer to the screen
# in the last linke after the variable (2, 3) u all can put any number there to find the answer of any question.