como fazer cores aleatórias em tartaruga python
import turtle, random
colors = ["green","brown"]
theColor = random.choice(colors)
turtle.color(theColor)
Call of Doody
import turtle, random
colors = ["green","brown"]
theColor = random.choice(colors)
turtle.color(theColor)