Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active December 29, 2020 00:46
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/3e80d6d465cdc4082139cf2ef993bb7e to your computer and use it in GitHub Desktop.
Save parzibyte/3e80d6d465cdc4082139cf2ef993bb7e to your computer and use it in GitHub Desktop.
# https://parzibyte.me/blog
def imprimir_submultiplos(numero):
for i in range(1, numero+1):
if es_multiplo(numero, i):
print(f"{i},", end=""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment