Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 31, 2020 16:31
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/15c9304d27e2226df6214655c7bd724a to your computer and use it in GitHub Desktop.
Save parzibyte/15c9304d27e2226df6214655c7bd724a to your computer and use it in GitHub Desktop.
# https://parzibyte.me/blog
juegos_nes = ["Adventure Island", "Mario Bros 3"]
juegos_snes = ["Super Mario World", "Donkey Kong Country"]
# Ahora "sumamos" los arreglos
todos_los_juegos = juegos_nes + juegos_snes
print(todos_los_juegos)
"""
Salida:
['Adventure Island', 'Mario Bros 3', 'Super Mario World', 'Donkey Kong Country']
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment