Files
Man1130/jupyter/Man1130-python-comission/course_materials/Note/a2-2-random.py
louiscklaw e44aead3d5 update,
2025-02-01 01:58:19 +08:00

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)