Created
October 29, 2020 01:01
-
-
Save soyHouston256/9a3dc5aa55d0e7ee0dd6c804a4854450 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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