Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 16, 2020 04:48
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/200275b265a76dd6bc24c8fd0f0e8931 to your computer and use it in GitHub Desktop.
Save parzibyte/200275b265a76dd6bc24c8fd0f0e8931 to your computer and use it in GitHub Desktop.
def generar_lista_enteros(minimo, maximo, longitud):
return [random.randint(minimo, maximo) for _ in range(longitud)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment