Skip to content

Instantly share code, notes, and snippets.

@fatosmorina
Created February 14, 2021 14:54
Show Gist options
  • Save fatosmorina/c2d53100640dccc2a4162533c5d4400c to your computer and use it in GitHub Desktop.
Save fatosmorina/c2d53100640dccc2a4162533c5d4400c to your computer and use it in GitHub Desktop.
for number in numbers:
if number % 2 == 1:
print(number)
break
else:
print("No odd numbers")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment