Skip to content

Instantly share code, notes, and snippets.

@Harrix
Created October 24, 2024 15:08
Show Gist options
  • Select an option

  • Save Harrix/81aca10f8a5d3a3e130d074eafea45e8 to your computer and use it in GitHub Desktop.

Select an option

Save Harrix/81aca10f8a5d3a3e130d074eafea45e8 to your computer and use it in GitHub Desktop.
count = 0
for i in range(10, 100):
if not (not(i % 2 == 0) and (i % 13 == 0)):
count+=1
print(count)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment