Question: This code is quite concise, but each height label is partly covered by the top segment of its bar. Can you modifiy the drawBar code,
This code is quite concise, but each height label is partly covered by the top segment of its bar. Can you modifiy the drawBar code, moving the label up slightly but not changing the bar? Hint: The label cannot be drawn during the polygon fill sequence.
import turtle
def drawBar(t, height): """ Get turtle t to draw one bar, of height. """ t.begin_fill() # start filling this shape t.left(90) t.forward(height) t.write(str(height)) t.right(90) t.forward(40) t.right(90) t.forward(height) t.left(90) t.end_fill() # stop filling this shape
xs = [48, 117, 200, 240, 160, 260, 220] # here is the data maxheight = max(xs) numbars = len(xs) border = 10
wn = turtle.Screen() # Set up the window and its attributes wn.setworldcoordinates(0-border, 0-border, 40*numbars+border, maxheight+border) wn.bgcolor("lightgreen")
tess = turtle.Turtle() # create tess and set some attributes tess.color("blue") tess.fillcolor("red") tess.pensize(3)
for a in xs: drawBar(tess, a)
wn.exitonclick()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
