tfwr/__utils__.py

6 lines
102 B
Python

def pow(integer: int, exp: int):
result = 1
for _ in range(exp):
result *= integer
return result