0
Turtle in Python in Codeplayground
How do you get Turtle in the Codeplayground?
2 Respostas
+ 2
You cannot (python code are run on server side and turtle module is not usable as output are done all at once and only as plain text)
However, you could simulate python turtle code in a web html/js context with the help of Skupt, a JS library to emulate Python (and Turtle module):
https://code.sololearn.com/WnQZ0B7qvLjF/?ref=app
Search among all public web codes 'turtle', you will find tons of such use of python turtle in web codes ;)
0
visph Thank You, you anwsered my question!