Skip to content

Instantly share code, notes, and snippets.

View dakerfp's full-sized avatar

Daker Fernandes Pinheiro dakerfp

View GitHub Profile
from enum import Enum
from random import randint
class Weather(Enum):
CLEAR = auto()
CLOUDY = auto()
RAINY = auto()
def next(self):
d6 = randint(1,6)