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.