Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

QUESTION2 The following Python code segment uses information supplied in a list called data_set. Each element of data_set is a triple (i.e, three values), specifying

image text in transcribed

QUESTION2 The following Python code segment uses information supplied in a list called data_set. Each element of data_set is a triple (i.e, three values), specifying certain properties for drawing a dot in Turtle. The properties include the co-ordinates for the location of the dot's centre on the Turtle canvas and a string representing the colour of the dot to be drawn. The size of the dot depends on its position. Note that all of the dots must be drawn on the left hand side of the canvas. for data in data set: penup goto (data[1], data [0]) color (data [2]) pensize (abs (data[1])/10) dot () Your task is to determine which of the following are valid values for data_set, in order to produce such a drawing in Turtle. data_sett5,-50, 'red, 10,10, blue'1, 200, -200, 'green', -100. -150, 'yellow'11 data_set- [l'red',0,'blue,-100,101'green'.-200, 200], 'yellow', -150,-10011 data set -[[red, 5, -50], [blue,10,-100], [green, 200,-200], [yellow,-100,-150] data_set-[['red', 5, -50], blue,10,-100,'green', 200,-200], 'yellow", -100,-150]1 data set. [[-50, 5, 'red'), [-100, 10,'blue'), [-200, 200, 'green'), [-150, -100, 'yellow. data set--50,'red', 5, -100, 'blue', 101, -200, 'green', 200], 'yellow', -1001

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_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

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

Get Started

Students also viewed these Databases questions