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()

11th Jan 2023, 10:19 AM
Hanan Malik
Hanan Malik - avatar
2 Answers
+ 7
Malik Hanan , turtle is not supported in Sololearn platform
11th Jan 2023, 10:21 AM
Riya
Riya - avatar
+ 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.
11th Jan 2023, 12:36 PM
Tibor Santa
Tibor Santa - avatar