Comment modifier plusieurs index dans la liste dans Python

lst=[0,0,0,0,0]
lst[2::2] = [99, 98]
print s
# [0, 0, 99, 0, 98]
flover _9