About 60 results
Open links in new tab
  1. how can in perfectly inscribe a triangle inside a square in python …

    Jan 9, 2020 · Reading the page that @EricDuminil cites in his comment, and everything else on this topic (most of which are concerned with area), the largest equilateral triangle inscribed in a square looks like this: import turtle from math import sqrt, radians, cos SQUARE_RADIUS = 100 # adjust as desired ANGLE = radians(15) TRIANGLE_RADIUS = sqrt((SQUARE ...

  2. Draw a square in Python Turtle - Stack Overflow

    Jul 14, 2024 · import turtle #acutally called turtle to draw a turtle beautiful also used to draw other stuff # to draw a square or eventually a turtle you need to do this things below # to draw a square you want to : move forward,turn right,move forward,turn right,move forward turn right def draw_square(): #draw square for turtles window = turtle.Screen() # ...

  3. Turtle Graphic Window not working from VS Code [duplicate]

    Nov 23, 2019 · You can create a canvas into turtle like a blank space to draw on. Use this code just to import the module an hold on the graphic window open -Pen It will work with Visual Studio Code, Spyder or Python IDLE. import turtle window = turtle.Screen() geoff = turtle.Turtle() t = turtle.Pen() window.exitonclick()

  4. python - Draw Triangle by turtle - Stack Overflow

    Jun 23, 2020 · Thanks @aartist for your comment, actually I am learning now the basics of Python from book and found it hard to understand the previous lines (same book and working with the book sequence), I didn't expect it use a list to assign variables, but I'll be sure to review the basics again to be sure to understand te code easily in the future :)

  5. drawing a triangle with lines across using python turtle

    Jul 6, 2020 · Here is a basic triangle, if you have a function called drawTriangle then it kind of makes sense to make it draw a triangle rather than something that you have to call three times to get a triangle. import turtle def drawTriangle(t, side): for _ in range(3): t.forward(side) t.left(120) t = turtle.Turtle() drawTriangle(t, 200)

  6. python - How to draw a square inside a square? - Stack Overflow

    Dec 17, 2019 · pink square is the taskI am trying to draw a square inside a square using turtle graphics. I couldn't draw exactly like the original one. Here is my code import turtle win = turtle.Screen() tess =

  7. Python Turtle drawing circle with squares - Stack Overflow

    After you draw the last side of a square, the turtle is sitting on the outer circle, facing 45 degrees off a radius to that point. Turn the turtle 60 degrees to face across a shallow chord of the circle. Move it the appropriate distance to traverse that chord (this is where your math comes in). Turn the turtle another 60 degrees.

  8. How to draw a circle using turtle in python? - Stack Overflow

    Nov 2, 2020 · I wanted ask how can I draw a circle using turtle module in python just using turtle.forward and turtle.left? I use the code below: for i in range(30): turtle.forward(i) turtle.left(i) turtle.done() What I get is that the line does not stop once I get the full cirle.

  9. Drawing multiple shapes at a time from a list of options (Python …

    So, first of all, here's the requirements: user picks 3 shapes from a list of 6; user chooses size, fill color, and line color; user cannot pick the same shape twice shapes should be drawn evenly s...

  10. turtle graphics - How to draw right angled triangle with python

    Oct 6, 2016 · Alternatively, you can also switch the turtle to use radians via turtle.radians() and then calculate math.cos(math.pi / 4) – cdlane Commented Oct 6, 2016 at 22:28

Refresh