Superhero Race Game! 🦸♂️🏃♂️💨
Write a for loop to print superhero names & watch them race!
💡 Use a for loop to print each superhero’s name.




Task: Write a for loop to print superhero names
Output:
Click to Reveal Solution
superheroes = ["Batman", "Spider-Man", "Iron Man", "Superman"] for hero in superheroes: print(hero)