Question

In: Computer Science

python. write a program that uses functions, and a loop with turtle graphics.

python. write a program that uses functions, and a loop with turtle graphics.

Solutions

Expert Solution

import turtle                  //importing turtle library
def t():                          //function definition
   k=turtle.Turtle()       //turtle object creation
   for i in range(4):      //loop for 4 sides of square
       k.forward(50)      //distance of line
       k.right(90)           //rotation degrees
   turtle.done             //stopping graphics

t()



Related Solutions

Write an if statement that uses the turtle graphics library to determine whether the turtle’s pen...
Write an if statement that uses the turtle graphics library to determine whether the turtle’s pen color is red or blue. If so, set the pen size to 5 pixels. Python.
Write a PYTHON program that uses a while loop to prompt for 5 integers. If the...
Write a PYTHON program that uses a while loop to prompt for 5 integers. If the number is equal to 99, display "Ninety-nine", otherwise display "no-match". If the number is equal to 75, display "Seventy-five", otherwise display "no-match".
Write a python program that uses a conditional loop to ask the user for distance and...
Write a python program that uses a conditional loop to ask the user for distance and gallons and calculates the MPG. The program should store data in a text file as shown below: Distance Gallons MPG 225 17 13.24 1374 64 21.47 2514 79 31.82
with python, create a fake logo for a company using turtle graphics
with python, create a fake logo for a company using turtle graphics
Create program in Python (using import turtle): 1)includes draw_background function 2)draw_background function uses a loop to...
Create program in Python (using import turtle): 1)includes draw_background function 2)draw_background function uses a loop to draw a background from at least one shape 3)uses at least 2 turtles to draw scent 4)includes draw_shape function 5)includes function to draw primary object 6)includes main method which creates the drawing
* Write a program texttriangle.py. in python This, too, is not a graphics program. Prompt the...
* Write a program texttriangle.py. in python This, too, is not a graphics program. Prompt the user for a small positive integer value, that I’ll call n. Then use a for-loop with a range function call to make a triangular arrangement of ‘#’characters, with n ‘#’ characters in the last line. Hint: [5] Then leave a blank line. Then make a similar triangle, except start with the line with n ‘#’ characters. To make the second triangle, you can use...
Write a function that plots the following trajectory equations using python turtle graphics. x = v*sin(A)*t...
Write a function that plots the following trajectory equations using python turtle graphics. x = v*sin(A)*t y = v*cos(A)*t -.5*(9.8)*t**2 Loop through t starting at 0 and increment by .1 until y<=0. (hint, while loop) Experiment with values of velocity V (1 to 20) and angle A (0 to 90) that gives you a good plot that does not go off the screen. Position the start of the plot at the left bottom of the screen
Sketch! This assignment is to write a Python program that makes use of the OpenGL graphics...
Sketch! This assignment is to write a Python program that makes use of the OpenGL graphics library to make an interactive sketching program that will allow the user to do line drawings. The user should be able to choose from a palette of colors displayed on the screen. When the user clicks the mouse in the color palette area, the drawing tool will switch to using the color selected, much like dipping a paint brush into a new color of...
Assignment Write a program using turtle graphics which writes your initials, or any other three unique...
Assignment Write a program using turtle graphics which writes your initials, or any other three unique letters, to the display. Look to your program for lab 1 for reminders of how to use turtle graphics. Functions that must be written: def drawLetter (x, y, letterColor): Write three functions, one for three unique letters. Personally, I would write drawA, drawR, and drawS. Each function must draw that letter to the screen. The x and y values determine the upper left-hand location...
Write a program using c++. Write a program that uses a loop to keep asking the...
Write a program using c++. Write a program that uses a loop to keep asking the user for a sentence, and for each sentence tells the user if it is a palindrome or not. The program should keep looping until the user types in END. After that, the program should display a count of how many sentences were typed in and how many palindromes were found. It should then quit. Your program must have (and use) at least four VALUE...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT