Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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

Revisions

  1. Max Houston Ramirez Martel created this gist Oct 29, 2020.
    14 changes: 14 additions & 0 deletions continue_break.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    def run():
    for contador in range(1,101):
    if contador % 2 !=0:
    continue
    print(contador)

    for i in range(100):
    if i==90:
    break
    print(i)

    if __name__ == "__main__":

    run()