Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active December 10, 2018 06:22
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/2283af716e8ac0f127da70babf58f9c0 to your computer and use it in GitHub Desktop.
Save parzibyte/2283af716e8ac0f127da70babf58f9c0 to your computer and use it in GitHub Desktop.
Explicación de Split en Python-1 created by parzibyte - https://repl.it/@parzibyte/Explicacion-de-Split-en-Python-1
cadena = "Hola mundo"
separador = " "
separado_por_espacios = cadena.split(separador)
print("Separado por espacios es:", separado_por_espacios)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment