menu search
brightness_auto
more_vert
3 1

Write a program to print numbers from 1 to 20 except multiple of 2 & 3.

Topic Python Programming
Type Python Program
Class 10
thumb_up_off_alt 3 like thumb_down_off_alt 0 dislike

1 Answer

more_vert
0

# to print numbers from 1 to 20 except multiple of 2 & 3

for x in range(20):

    if (x == 2 or x==3):

        continue

    print(x,end=' ')

print("\n")


Study more about Python at Python Class 10

thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike

Related questions

thumb_up_off_alt 2 like thumb_down_off_alt 0 dislike
1 answer
thumb_up_off_alt 3 like thumb_down_off_alt 0 dislike
1 answer
thumb_up_off_alt 3 like thumb_down_off_alt 0 dislike
1 answer
thumb_up_off_alt 2 like thumb_down_off_alt 0 dislike
1 answer
thumb_up_off_alt 2 like thumb_down_off_alt 0 dislike
1 answer
thumb_up_off_alt 3 like thumb_down_off_alt 0 dislike
0 answers
thumb_up_off_alt 4 like thumb_down_off_alt 0 dislike
1 answer
thumb_up_off_alt 3 like thumb_down_off_alt 0 dislike
1 answer
thumb_up_off_alt 3 like thumb_down_off_alt 0 dislike
1 answer
thumb_up_off_alt 3 like thumb_down_off_alt 0 dislike
1 answer
bolt Stuck on something?

Ask the community — students and mentors are here to help, and you can search past answers too.

Ask a Question arrow_forward
Welcome to Aiforkids, where you can ask questions and receive answers from other members of the community.

BEST AI 417 Board Exam Study Plan & Syllabus Overview 2025 OPEN NOW

Class 10 Complete One Shot AI Lectures at - Youtube
...