Skip to content

Instantly share code, notes, and snippets.

@rafaeletc
Created May 11, 2014 19:52
Show Gist options
  • Save rafaeletc/8777b543025ae296697e to your computer and use it in GitHub Desktop.
Save rafaeletc/8777b543025ae296697e to your computer and use it in GitHub Desktop.
Função para imprimir a contagem de A à B
def contar(a,b):
for i in range (a,b):
print(i, end=',')
print(i+1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment