One little part of my code is:
def check_bullet_alien_collisions(ai_settings, screen, ship, aliens, bullets):
"""Respond to bullet-alien collisions.""" # <-- this line
collisions = pygame.sprite.groupcollide(bullets, aliens, False, True)
if len(aliens) == 0:
bullets.empty()
create_fleet(ai_settings, screen, ship, aliens)
The second line, do I need those three sets of quotes? If so what are they used for?