I want to round numbers down to the next 5 in python
What I mean:
1 -> 0
3 -> 0
4 -> 0
5 -> 5
7 -> 5
9 -> 5
...
I already searched a lot for rounding numbers with a base but then also 3 -> 5
but it has to be 3 -> 0
Thank you for helping me with this