Agentic AI - Agent Observability
What is wrong with this code snippet for error rate?
Output is 0.100 but expected 10%. What is the issue?
total = 80
wrong = 8
error_rate = wrong / total
print(f"Error rate: {error_rate:.3f}")Output is 0.100 but expected 10%. What is the issue?
