Skip to content

Instantly share code, notes, and snippets.

@Vishakha263
Last active October 17, 2019 03:26
Show Gist options
  • Save Vishakha263/b4ae7a27700b6d1eb16155b11c25ee17 to your computer and use it in GitHub Desktop.
Save Vishakha263/b4ae7a27700b6d1eb16155b11c25ee17 to your computer and use it in GitHub Desktop.
i=0
while i >= 0:
i=i+1
if i % 2 == 0:
continue
print(i)
@ishita20
Copy link

i=0
while i <= 0:
  i=i+1
  if i % 2 == 0:
     continue
  print(i)

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