16 lines
471 B
Python
16 lines
471 B
Python
import random
|
|
|
|
class PossibleFlower:
|
|
color = ['red', 'blue', 'yellow', 'white', 'pink']
|
|
name = ['tulip', 'sunflower', 'rose', 'dandelion', 'daisy']
|
|
|
|
class Flower:
|
|
color = None
|
|
name = None
|
|
coordinates = []
|
|
|
|
def __init__(self, coordinates, color = PossibleFlower.color[random.randint(0, 4)], name = PossibleFlower.name[random.randint(0, 4)]):
|
|
self.color = color
|
|
self.name = name
|
|
self.coordinates = coordinates
|