About 4,540,000 results
Open links in new tab
  1. Write Your Name In Python Using Turtle - Pythondex

    Jul 3, 2023 · Python Program To Write Your Name In Turtle import turtle as t name = input("Enter your name: ") t.write(name,font=("Arial", 50,"bold","italic")) t.hideturtle() t.done() Above is the code for drawing your name in turtle, as you can see in the code we first take name input from the user then we use the write method to draw that name.

  2. How do I write my name with turtles in python? - Stack Overflow

    Aug 26, 2020 · I'm a beginner, so try to use simple terms. I want to write "Noah" with turtle library. My code so far: import turtle t=turtle.Turtle () t...

  3. Turtle Graphics: Make the turtle write your name and much more.

    Sep 8, 2020 · Turtle graphics is a built-in python module that provides a canvas and a turtle (cursor) to let you show your creativity. The turtle moves around the canvas and draws as directed. The canvas can be thought of as a graph having the origin(0,0) at its very centre.

  4. Using Python Turtle to Draw the name 'QUINN' - Stack Overflow

    Oct 5, 2021 · This code will draw the word QUINN. Some key concepts are using loops to make drawing squares such as the Q and using functions (def) to make the code cleaner and easier to read. One key aspect in this code is geometry. You must use it to make both Ns. Use the equation (hypotenuse/square root of two) if you are to use 45 or 135 degree angles.

  5. Python Turtle Write Function - Python Guides

    Oct 14, 2021 · In this section, we will learn about how to write name in Python turtle. We can write any name of our choice anywhere from tur.write () function. We can also rewrite the name if we won’t simply remove the previous name and write the new name in the argument. Code:

  6. turtleTurtle graphics — Python 3.13.3 documentation

    2 days ago · In Python, turtle graphics provides a representation of a physical “turtle” (a little robot with a pen) that draws on a sheet of paper on the floor. It’s an effective and well-proven way for learners to encounter programming concepts and interaction with software, as it provides instant, visible feedback.

  7. How to Draw a Name using Python Turtle Graphics - YouTube

    May 8, 2021 · Here, we will "DRAW A NAME" using Python Turtle Graphics.Source code.. 👇🏻https://github.com/saksham0626/Python-Turtle-Library/blob/main/Draw_name.pyYou ma...

  8. writing names with turtle using python - YouTube

    Jun 29, 2020 · this video is about using turtle to write names which is used for drawingthis video uses a programming language called python and library turtle.code your na...

  9. python - Draw Letters In Turtle - Stack Overflow

    Apr 29, 2017 · You can use turtle.circle to draw semicircles (i.e. arcs). The main issue you have is that your half-circle starts when the turtle is facing up, rather than to the right. Add a t.right(90) call just before the for loop and you'll be closer to what you want (you'll get something like a P).

  10. Turtle Programming in Python - GeeksforGeeks

    Mar 21, 2024 · “Turtle” is a Python feature like a drawing board, which lets us command a turtle to draw all over it! We can use functions like turtle.forward (…) and turtle.right (…) which can move the turtle around. Commonly used turtle methods are : Plotting using Turtle.

  11. Some results have been removed
Refresh