Skip to content

Instantly share code, notes, and snippets.

@soyHouston256
Created October 29, 2020 01:01
Show Gist options
  • Select an option

  • Save soyHouston256/9a3dc5aa55d0e7ee0dd6c804a4854450 to your computer and use it in GitHub Desktop.

Select an option

Save soyHouston256/9a3dc5aa55d0e7ee0dd6c804a4854450 to your computer and use it in GitHub Desktop.

Revisions

  1. Max Houston Ramirez Martel created this gist Oct 29, 2020.
    8 changes: 8 additions & 0 deletions range.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,8 @@

    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)))