Добрый день!
Коллеги, выполняю задание Index Power (это самое начало). Столкнулся с тем, что, вот, никак не могу понять в чем заключается ошибка. При нажатии на Check выдает ошибку. На мой взгляд все условия задания учел. Ответ выдает.
Подскажите, пожалуйста, в чем моя ошибка!
Вот мой код:
def index_power(array: list, n: int):
"""
Find Nth power of the element with index N.
"""
if len(array) < n:
return -1
for x in array:
if x < 0 or x > 100:
return None
if 0 < len(array) <= 10 and n >= 0:
rezult = array[n] ** n
return rezult
else:
return None
if name == 'main':
print('Example:')
print(indexpower([1, 2, 3, 4], 2))
print(indexpower([1, 3, 10, 100], 3))
print(indexpower([0, 1], 0))
print(indexpower([1, 2], 3))
#These "asserts" using only for self-checking and not necessary for auto-testing
assert index_power([1, 2, 3, 4], 2) == 9, "Square"
assert index_power([1, 3, 10, 100], 3) == 1000000, "Cube"
assert index_power([0, 1], 0) == 1, "Zero power"
assert index_power([1, 2], 3) == -1, "IndexError"
print("Coding complete? Click 'Check' to review your tests and earn cool rewards!")
Created at: 2020/01/16 14:51; Updated at: 2020/02/01 11:07