I'm trying to print numbers if they are not divisible by three or five and if they are divisible by three or five they should not be printed. This is my code:
i = int(input())
if (i == i/3) | (i == i/5):
print('this number is divisible by 3 or 5')
else:
print('i')
Im new to stackoverflow does not the properly how it works!!!!:(