File size: 215 Bytes
1b7462b
 
 
 
 
1
2
3
4
5
def save_report(hypothesis, result):
    text = f"## Hypothesis\n{hypothesis}\n\n## Simulation Result\n{result}\n\n"
    with open("output/reports.md", "a") as f:
        f.write(text)
    return "output/reports.md"