Skip to content

Instantly share code, notes, and snippets.

@Vishakha263
Last active October 22, 2019 17:27
Show Gist options
  • Save Vishakha263/8433500f7ed5bf1cf4ff6dfa56821d16 to your computer and use it in GitHub Desktop.
Save Vishakha263/8433500f7ed5bf1cf4ff6dfa56821d16 to your computer and use it in GitHub Desktop.
i=1
while (i<4):
if(i==2):
i+=1
continue
print(i)
i+=1
@ishita20
Copy link

i=1
while (i<4):
  if(i==2): 
    i+=1
    continue
  print(i, end=" ")
  i+=1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment