13 lines
179 B
Python
13 lines
179 B
Python
# you can download at
|
|
# https://goo.gl/WKdcqo
|
|
|
|
import random
|
|
|
|
random.randint(0,3)
|
|
|
|
|
|
colors = [random.randint(0,2)]
|
|
colors = [random.randint(0,len(colors))]
|
|
|
|
|
|
random.choice(colors) |