Question: Python 3.6 Make the following code draw a line: from turtle import * def switchupdown(x=0, y=0): if pen()[pendown]: end_fill() up() else: down() begin_fill() def changecolor(x=0,

Python 3.6

Make the following code draw a line:

from turtle import *

def switchupdown(x=0, y=0): if pen()["pendown"]: end_fill() up() else: down() begin_fill()

def changecolor(x=0, y=0): global colors colors = colors[1:]+colors[:1] color(colors[0])

def main(): global colors shape("circle") resizemode("user") shapesize(.5) width(3) colors=["red", "green", "blue", "yellow"] color(colors[0]) switchupdown() onscreenclick(goto,1) onscreenclick(changecolor,2) onscreenclick(switchupdown,3) return "EVENTLOOP"

if __name__ == "__main__": msg = main() print(msg) mainloop()

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!