Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active March 11, 2019 22:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/89adc8c889ef82efee7043bf44c84587 to your computer and use it in GitHub Desktop.
Save parzibyte/89adc8c889ef82efee7043bf44c84587 to your computer and use it in GitHub Desktop.
animales_terrestres = set(["Tortuga", "Lobo", "Perro", "Cangrejo"])
print("Terrestres: ", animales_terrestres)
animales_acuaticos = set(["Tiburón", "Pulpo", "Tortuga", "Cangrejo"])
print("Acuáticos: ", animales_acuaticos)
todos_los_animales = animales_terrestres.union(animales_acuaticos)
print("Unión: ", todos_los_animales)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment