Skip to content

Instantly share code, notes, and snippets.

@alexanderawwagner
Created March 5, 2021 12:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexanderawwagner/4d83a2c492836500e4eb3647ec333bbc to your computer and use it in GitHub Desktop.
Save alexanderawwagner/4d83a2c492836500e4eb3647ec333bbc to your computer and use it in GitHub Desktop.
Medium_04_Python Course-Part 04- Control Structures
for i in numbers:
# check if x is even
if i % 3 == 0:
continue
print("Value: ",i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment