+ 2
What do you think of this circle of squares?
This is my code of a challenge I got form Clever Programmer. And I wanted to know what you guys think of my solution for it. CHALLENGE: Make a square of circles. Code: import turtle t = turtle.Turtle() t.speed(0) def square(x,y): t.forward(x) t.right(y) t.forward(x) t.right(y) t.forward(x) t.right(y) t.forward(x) for inclination in range(100000): square(100,90) square(0,90+1)
2 Respostas
+ 16
It sucks that SoloLearn's Code Playground can't run the turtle module 😭😭😭😭💔💔💔💔
0
you want to make a square from circles, not a circle from squares, you misread the challenge