请大家帮我看看这段代码的含义,我看不太明白?bullet2_index = (bullet2_index+1)%BULLET2_NUM
#发射子弹
if not(delay%10):
bullet_sound.play()
if is_double_bullet:
bullets = bullet2
bullets[bullet2_index].reset((me.rect.centerx-33,me.rect.centery))
bullets[bullet2_index+1].reset((me.rect.centerx+33,me.rect.centery))
bullet2_index = (bullet2_index+1)%BULLET2_NUM
bullet2_index = (bullet2_index+1)%BULLET2_NUM
这段代码表达什么含义?我无法理解。