+ 1
Which code is similar to algoid?
/* Demo sample code. Written by Yann Caron at 14-10-2012 To execute it touch run menu. To remove step-by-step mode please touch menu execution step-by-step enjoy this demo */ set poly = function (size, n) { loop (n) { algo.go (size); algo.turnLeft (360 / n); } }; ui.showAlgo(); loop(20) { poly (70, 10); algo.turnLeft() } is an algoid syntax but can you show me it in a different code? note that I asked 2 questions
2 ответов
+ 3
@Ifl yes
+ 1
Is the python turtle module what you are looking for?