Skip to content

Instantly share code, notes, and snippets.

@soyHouston256
Created October 29, 2020 01:01
Show Gist options
  • Save soyHouston256/9a3dc5aa55d0e7ee0dd6c804a4854450 to your computer and use it in GitHub Desktop.
Save soyHouston256/9a3dc5aa55d0e7ee0dd6c804a4854450 to your computer and use it in GitHub Desktop.
for contador in range(100):
print(contador+1)
for contador in range(1,11):
print(contador+1)
#Convertira tu range en una lista
print(list(range(1,11)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment