Skip to content

Instantly share code, notes, and snippets.

@zachelko
Last active September 4, 2015 21:34
Show Gist options
  • Save zachelko/386825 to your computer and use it in GitHub Desktop.
Save zachelko/386825 to your computer and use it in GitHub Desktop.
def printOdds(startVal, endVal):
for odd in range(startVal, endVal + 1, 2):
print(str(odd))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment