python turtle how to pick a random color code example
Example: how to make random colors in python turtle
import turtle, random
colors = ["green","brown"]
theColor = random.choice(colors)
turtle.color(theColor)
import turtle, random
colors = ["green","brown"]
theColor = random.choice(colors)
turtle.color(theColor)