Draw Spiraling Triangle using Turtle in Python Last Updated : 20 Aug, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report Prerequisite: Python Turtle Basic Turtle is an inbuilt module of python. It enables us to draw any drawing by a turtle, methods defined in the turtle module, and by using some logical loops. To draw something on the screen(cardboard) just move the turtle(pen). To move turtle(pen) there are some functions i.e forward(), backward(), etc. Approach to draw a Spiraling Triangle of size n: Import turtle and create a turtle instance.Using for loop(i = 0 to i< n * 3) and repeat below stepturtle.forward(i * 10).turtle.right(120).Close the turtle instance. Below is the implementation: Python3 # importing turtle module import turtle # size n = 10 # creating instance of turtle pen = turtle.Turtle() # loop to draw a side for i in range(n * 3): # drawing side of # length i*10 pen.forward(i * 10) # changing direction of pen # by 120 degree in clockwise pen.right(120) # closing the instance turtle.done() Output: Comment More infoAdvertise with us Next Article Print a Spirograph using turtle in Python I iamjpsonkar Follow Improve Article Tags : Python Python-turtle Practice Tags : python Similar Reads Draw Spiraling Star using Turtle in Python Prerequisite: Python Turtle Basics Turtle is an inbuilt module of python. It enables us to draw any drawing by a turtle and methods defined in the turtle module and by using some logical loops. To draw something on the screen(cardboard) just move the turtle(pen).To move turtle(pen) there are some fu 1 min read Draw Spiraling Square using Turtle in Python Prerequisite: Python Turtle Basic Turtle is an inbuilt module of python. It enables us to draw any drawing by a turtle, methods defined in the turtle module and by using some logical loops. To draw something on the screen(cardboard) just move the turtle(pen). To move turtle(pen) there are some funct 1 min read Draw Spiraling Polygon using Turtle in Python Prerequisite: Python Turtle Basic Turtle is an inbuilt module of python. It enables us to draw any drawing by a turtle, methods defined in the turtle module and by using some logical loops. To draw something on the screen(cardboard) just move the turtle(pen). To move turtle(pen) there are some funct 1 min read Draw a Sine wave using Turtle in Python In this article, we will draw a sinewave using a turtle in Python. Turtle is one of the modules in python, it is a graphic that refers to controlling a graphical entity in a graphics window with x, and y coordinates. It is a toolkit that provides a simple and enjoyable way to draw pictures and shape 3 min read Print a Spirograph using turtle in Python Pre-requisites: Turtle Programming in Python A spirograph is a very interesting geometrical figure which is often symmetrical to both the axes. It produces mathematical roulette curves of the variety technically known as hypotrochoids and epitrochoids. Here, we've used a range of colors to draw circ 1 min read Draw smiling face emoji using Turtle in Python Prerequisite: Python Turtle Basics Turtle is an inbuilt module in Python. It provides drawing using a screen (cardboard) and turtle (pen). To draw something on the screen, we need to move the turtle. To move turtle, there are some functions i.e forward(), backward(), etc. In this article, we will se 2 min read Like