Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I'm trying to draw the bahamas flag using python but having trouble trying to put the triangle at the right position. This is my code

I'm trying to draw the bahamas flag using python but having trouble trying to put the triangle at the right position. This is my code right now.

import turtle

def main(): bahamas = turtle.Turtle() bahamas.shape("turtle")

bahamas.goto(0,0) for i in range(2): bahamas.fillcolor('MediumAquamarine') bahamas.begin_fill() bahamas.forward(300) bahamas.right(90) bahamas.forward(50) bahamas.right(90) bahamas.end_fill()

bahamas.goto(0,-50) for i in range(2): bahamas.fillcolor('yellow') bahamas.begin_fill() bahamas.forward(300) bahamas.right(90) bahamas.forward(50) bahamas.right(90) bahamas.end_fill()

bahamas.goto(0,-100) for i in range(2): bahamas.fillcolor('MediumAquamarine') bahamas.begin_fill() bahamas.forward(300) bahamas.right(90) bahamas.forward(50) bahamas.right(90) bahamas.end_fill()

bahamas.fillcolor('black') bahamas.begin_fill() bahamas.forward(131) bahamas.right(120) bahamas.forward(150) bahamas.right(120) bahamas.forward(131) bahamas.right(120) bahamas.end_fill()

turtle.hideturtle() main()

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Intelligent Information And Database Systems 12th Asian Conference ACIIDS 2020 Phuket Thailand March 23 26 2020 Proceedings

Authors: Pawel Sitek ,Marcin Pietranik ,Marek Krotkiewicz ,Chutimet Srinilta

1st Edition

9811533792, 978-9811533792

More Books

Students also viewed these Databases questions

Question

1. Is this appropriate?

Answered: 1 week ago

Question

1. What is meant by Latitudes? 2. What is cartography ?

Answered: 1 week ago

Question

What did they do? What did they say?

Answered: 1 week ago