Write a turtle graphics program that draws a city skyline

Berikut ini adalah pertanyaan dari juanpadrao pada mata pelajaran TI untuk jenjang Sekolah Menengah Atas

Write a turtle graphics program that draws a city skyline similar to the one shown in Figure 5-33. The program’s overall task is to draw an outline of some city buildings against a night sky. Modularize the program by writing functions that perform the following tasks: • Draw the outline of buildings. • Draw some windows on the buildings. • Use randomly placed dots as the stars (make sure the stars appear on the sky, not on the buildings)

Jawaban dan Penjelasan

Berikut ini adalah pilihan jawaban terbaik dari pertanyaan diatas.

Jawaban:

from turtle import *

right(108)

color('red')

for i in range(5):

forward(200)

right(-(180-36))

color('blue')

for i in range(5):

forward(70) #not sure if it is 70

right(-(180-36))

penup()

right(-18)

forward(83) #not sure if it is 83

right(18)

pendown()

color('green')

for i in range(5):

forward(40) #not sure if it is 40

right(-(180-36))

done()

RAW Paste Data

from turtle import * right(108) color('red') for i in range(5): forward(200) right(-(180-36)) color('blue') for i in range(5): forward(70) #not sure if it is 70 right(-(180-36)) penup() right(-18) forward(83) #not sure if it is 83 right(18) pendown() color('green') for i in range(5): forward(40) #not sure if it is 40 right(-(180-36)) done()

Penjelasan:

Semoga dengan pertanyaan yang sudah terjawab oleh feriramadhanazhari dapat membantu memudahkan mengerjakan soal, tugas dan PR sekolah kalian.

Apabila terdapat kesalahan dalam mengerjakan soal, silahkan koreksi jawaban dengan mengirimkan email ke yomemimo.com melalui halaman Contact

Last Update: Mon, 06 Jun 22