10 lines
382 B
Python
10 lines
382 B
Python
import random
|
|
|
|
def checkConditions():
|
|
weather = random.choice(['Sunny', 'Cloudy', 'Rainy', 'Hail'])
|
|
day_time = random.choice(['Day', 'Night'])
|
|
temperature = random.choice(['Freezing', 'Cold', 'Mild', 'Hot'])
|
|
wind = random.choice(['Windless', 'Strong Wind', 'Gale'])
|
|
humidy = random.choice(['Low', 'High'])
|
|
|
|
return weather, day_time, temperature, wind, humidy |