just a quick question, how would i make it so that instead of just having 1 number (5 in this example) i could have multiple numbers (e.g. 5 or 6 or 7 etc.) or would i just have to do all of them seperately.
This is my example - if (i % 5 == 0):
i know it seems like a dumb question but i can't figure it out for some reason unless it's not possible. I've already tried if (i % 5 or 6 == 0):
and if i % (5 or 6) == 0:
but neither of them worked.
hope this makes sense thank you in advance