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