Wednesday, July 3, 2024
HomeLanguagesPythonturtle.getshapes() function in Python

turtle.getshapes() function in Python

The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses Tkinter for the underlying graphics, it needs a version of Python installed with Tk support.

turtle.getshapes()

This function is used to return a list of names of all currently available turtle shapes. It doesn’t require any argument.

Syntax :

turtle.getshapes()

Below is the implementation of the above method with some examples :

Example 1 :

Python3




# import package
import turtle
print(turtle.getshapes())


Output :

['arrow', 'blank', 'circle', 'classic', 'square', 'triangle', 'turtle']

Example 2 :

Python3




# import package
import turtle
shapes = turtle.getshapes()
  
  
# set speed to slowest
turtle.speed(1)
  
# draw all shapes
for i in range(len(shapes)):
    
  # shape
  turtle.shape(shapes[i])
    
  # motion
  turtle.forward(100)
  turtle.right(51.42)
  turtle.stamp()


Output :

Nango Kalahttps://www.kala.co.za
Experienced Support Engineer with a demonstrated history of working in the information technology and services industry. Skilled in Microsoft Excel, Customer Service, Microsoft Word, Technical Support, and Microsoft Office. Strong information technology professional with a Microsoft Certificate Solutions Expert (Privet Cloud) focused in Information Technology from Broadband Collage Of Technology.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments