0
Problem
Can we use python libraries in sololearn Like this codeđ import turtle star = turtle.Turtle() Â star.right(75) star.forward(100) Â for i in range(4): Â Â Â Â star.right(144) Â Â Â Â star.forward(100) Â Â Â Â Â turtle.done()
2 Answers
+ 7
Malik Hanan ,
turtle is not supported in Sololearn platform
+ 2
You can use turtle on the web playground, with the help of Skulpt, a python-to-javascript transpiler.
Example:
https://code.sololearn.com/WdIxyN2mxjZ1/?ref=app
But you can also find other examples if you search the code playground.