Indian Flag
Indian Flag design ---Source code--- # Author : E.Guru Prasad Reddy import turtle srn = turtle.Screen() srn.title( "Indian Flag" ) turtle.speed( 1 ) srn.bgcolor( "#121212" ) turtle.pencolor( "red" ) turtle.penup() turtle.goto(- 100 , 100 ) turtle.fillcolor( "#FF9933" ) turtle.begin_fill() turtle.setheading( 90 ) turtle.pendown() turtle.forward( 55 ) turtle.setheading( 0 ) turtle.forward( 300 ) turtle.setheading( 270 ) turtle.forward( 55 ) turtle.setheading( 180 ) turtle.forward( 300 ) turtle.end_fill() turtle.fillcolor( "white" ) turtle.begin_fill() turtle.setheading( 270 ) turtle.forward( 55 ) turtle.setheading( 0 ) turtle.forward( 300 ) turtle.setheading( 90 ) turtle.forward( 55 ) turtle.end_fill() turtle.penup() turtle.setheading( 180 ) turtle.forward( 160 ) turtle.setheading( 270 ) turtle.pencolor( "black" ) turtle.forward( 27.5 ) turtle.pendown() turtle.fillcolor( "navy" ) turtle.begin_fill() turtle.circle( 5 )...