AI for Everyone - What is Artificial Intelligence
Consider this code snippet representing a simple AI learning step:
What will be the output?
data = [1, 2, 3, 4]
model = 0
for x in data:
model += x
model = model / len(data)
print(model)What will be the output?
