mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
5 lines
122 B
Python
5 lines
122 B
Python
def exponentiation(base, exponent):
|
|
result = 1
|
|
for _ in range(exponent):
|
|
result *= base
|
|
return result
|