Увеличить все элементы списка Python
def incr(lst, i):
return [x+i for x in lst]
Obedient Ocelot
def incr(lst, i):
return [x+i for x in lst]