i got some turtle homework. but i did not get the circle command to work. i really want to keep using google colab.
(i found other posts with the same problem, but their solution to change the library/file name didn't work for me)
(i also tried different import methods and names, and created a new file, all cause that error)
!pip3 install ColabTurtle
import ColabTurtle.Turtle as t
t.initializeTurtle()
t.forward(25)
t.left(45)
t.circle(70)
forward and left worked, but the t.circle(70) causes the error: AttributeError: module 'ColabTurtle.Turtle' has no attribute 'circle'
here is an imgur screenshot: https://i.sstatic.net/kz2Ji.jpg
here is the link so you can try around in the online file: https://colab.research.google.com/drive/1WzSV6ZotxMg85BMeiuc8W5Xq3wiYxwev
circle()
function. Please explain why you would expect it to offer one. – Milden