AI for Everyone - What is Artificial Intelligence
Consider this simple system:
What will this print?
rules = {'hot': 'turn_on_ac', 'cold': 'turn_on_heater'}
def apply_rule(temp):
if temp > 25:
return rules['hot']
else:
return rules['cold']
print(apply_rule(30))What will this print?
