Я поместил свою кодировку в IDLE и получил сообщение об ошибке
TypeError: могу только объединить список (не "int") в список.
Почему питон не делаетне принимаете индекс в values[index]
как int
?Что мне делать с этой проблемой?
def repeat_elem (values, index, num_times):
# this function returns a new list in which the element of 'values'
# at position 'index' has been repeated 'num_times' times
return values[:index] + values[index]*(num_times - 1) + values[index+1:]