Results 1 to 5 of 5
  1. #1
    Matthew's Avatar
    Join Date
    Mar 2017
    Gender
    male
    Posts
    5,330
    Reputation
    1162
    Thanks
    1,156

    Python Program to Write my Name in Turtle

    Coded in Python using IDLE as my IDE and imported the turtle library. Run the program and it opens a Turtle window which attempts to draw part of my name. It's sloppy given all the commands and numerical distances I gave it

    Code:
    #import turtle libary/create turtle window
    import turtle
    turtle = turtle.Turtle()
    
    #list of all commands to draw 'MATT'
    turtle.up()
    turtle.backward(300)
    turtle.down()
    turtle.left(90)
    turtle.forward(150)
    turtle.right(150)
    turtle.forward(100)
    turtle.left(130)
    turtle.forward(100)
    turtle.right(150)
    turtle.forward(150)
    turtle.up()
    turtle.left(90)
    turtle.forward(30)
    turtle.left(70)
    turtle.down()
    turtle.forward(150)
    turtle.right(150)
    turtle.forward(150)
    turtle.up()
    turtle.backward(75)
    turtle.right(100)
    turtle.down()
    turtle.forward(50)
    turtle.up()
    turtle.home()
    turtle.backward(60)
    turtle.left(90)
    turtle.forward(30)
    turtle.down()
    turtle.forward(130)
    turtle.up()
    turtle.right(90)
    turtle.backward(30)
    turtle.down()
    turtle.forward(70)
    turtle.up()
    turtle.forward(30)
    turtle.down()
    turtle.forward(70)
    turtle.up()
    turtle.backward(40)
    turtle.right(90)
    turtle.down()
    turtle.forward(130)

  2. The Following User Says Thank You to Matthew For This Useful Post:

    [MPGH]Beex (10-04-2020)

  3. #2
    zBenq's Avatar
    Join Date
    Feb 2022
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0

    I dont now :c

    I dont now

  4. #3
    jhonalbert's Avatar
    Join Date
    Dec 2021
    Gender
    male
    Location
    Australia
    Posts
    12
    Reputation
    10
    Thanks
    1
    My Mood
    Busy
    If you write your in turtle follow below commands of python

    import turtle
    turtle.color(' black')
    style = ('Arial', 30, 'italic')
    turtle.write('WRITE YOUR NAME HERE', font=style, align='center')
    turtle.hideturtle()

  5. #4
    Matka10's Avatar
    Join Date
    Mar 2022
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    0

    Python is great

    Python is simple and chill

  6. #5
    beetjack's Avatar
    Join Date
    Apr 2022
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    what does this script use for?

Similar Threads

  1. Python Programming Homework (University, Intermediate level)
    By TallOne123 in forum Work & Job Offers
    Replies: 0
    Last Post: 02-04-2016, 05:33 PM
  2. Paying for a short text based python program
    By Braddy12 in forum Coders Lounge
    Replies: 1
    Last Post: 05-09-2015, 11:17 AM
  3. [Help] Hacking Python programs
    By boynedmaster in forum Coders Lounge
    Replies: 0
    Last Post: 03-25-2015, 06:03 PM
  4. [Solved] Which programe is the best for creating hacks (write the name)
    By anamasryaraby in forum CrossFire Help
    Replies: 4
    Last Post: 07-31-2012, 10:46 PM