Write program in Python Use any two of the following designs: - Triangles - Multi-dimensional Rectangle - Olympics Rings
Write program in Python Use any two of the following designs: - Triangles - Multi-dimensional Rectangle - Olympics Rings
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Write
Use any two of the following designs:
- Triangles
- Multi-dimensional Rectangle
- Olympics Rings
- Directions
- Dotted Rectangle

Transcribed Image Text:When you run / execute this program, the results display as:
Fython Turtle Graphics
DIAMOND
DIAMOND

Transcribed Image Text:23
# PROGRAMMER:
# PROGRAM NAME:
# DATE WRITTEN:
# PURPOSE:
Prof.
Creating double Diamond shapes
enter current date
Design double diamonds and write text inside each diamond
import turtle; # make the turtle graphics system available in Python
turtle.shape ("turtle"):
# changes the default cursor from shrevron to
# circle shape (turtle, square, arrow, circle)
turtle.speed (10) ;
turtle.bgcolor ("powder blue");
turtle.pensize (5);
turtle.pencolor ("green");
# changes drawing speed
# change color
# change the width of the pen / line to 5
# change pen / line color
# fill color of object
turtle.fillcolor ("red");
turtle.begin_fill ();
#-
# Draw 1st simple Diamond
turtle.left (-45) ;
turtle.forward (250);
turtle.left (90) ;
turtle.forward (250);
turtle.left (90) ;
turtle.forward (250);
turtle.left (90) ;
turtle.forward (250):
#---
# Draw 2nd Diamond
turtle.forward (250);
turtle.right (90);
turtle.forward (250);
turtle.right (90);
turtle.forward (250);
turtle.right (90);
turtle.forward (250);
# -45 degree angle change
# draw line which is 250 pixels long
# turns cursor 90 degrees left
# draw line which is 250 pixels long
# turns cursor 90 degrees left
# draw line which is 250 pixels long
# turns cursor 90 degrees left
# draw line which is 250 pixels long
# draw line which is 250 pixels long
* turns cursor 90 degrees left
# draw line which is 250 pixels long
* turns cursor 90 degrees left
# draw line which is 250 pixels long
* turns cursor 90 degrees left
# draw line which is 250 pixels long
turtle.hideturtle ();
# hides the cursor
turtle.end_fill ();
# completes the fill color process
# display text "DIAMOND" in left Diamond shape
turtle.penup () ;
# pen moves up
# moves the pen to positions -235 for x axis, -20 for y axis
turtle.goto (-235, -20);
turtle.pencolor ("lavender blush");
turtle.write ("DIAMOND", font =
#-
# display text "DIAMOND" in right Diamond shape
turtle.penup ();
("Times New Romans", "25", "bold"))
# pen moves up
# moves the pen to positions 110 for x axis, -20 for y axis
turtle.goto (110, -20);
turtle.pencolor ("white");
turtle.write ("DIAMOND", font = ("Times New Romans", "25", "bold"))
turtle.done ();
#-
# END PROGRAM
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 3 steps

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON

Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education