USING LOOPS IN PYTHON
Question
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
It will take less than 1 minute to register for lifetime. Bonus Tip - We don't send OTP to your email id Make Sure to use your own email id for free books and giveaways
Answers ( 2 )
Ans.
for x in range(21):
if (x % 3 == 0 or x % 5 == 0):
continue
print(x)
for i in range(0,21):
if i%3==0 or i%5==0 :
continue
print(i)