10. Consider these python statements
from graphics import *
colors = ["blue", "cyan", "yellow"]
c = input("choose a number from 0 to 2: ")
p = Point(20,40)
circ = Circle(p, 10)
circ.setFill(c)
If the user enters 1, what will be the circle's color?
|
blue
cyan
yellow
none of the above
|