Files
virt-dashboard/api/app/helpers/math.py
2023-09-08 19:05:37 +03:00

3 lines
88 B
Python

def safe_division(n: int, d: int, r: int = 2):
return round((n / d), r) if d else 0