2019-09-10 15:17:35 +02:00
|
|
|
"Script which contains several utils for Haldis"
|
|
|
|
|
|
|
|
|
2019-09-08 01:58:21 +02:00
|
|
|
def euro_string(value: int) -> str:
|
2019-08-28 03:46:04 +02:00
|
|
|
"""
|
|
|
|
Convert cents to string formatted euro
|
|
|
|
"""
|
2019-09-05 03:33:29 +02:00
|
|
|
result = "€ {:.2f}".format(round(value / 100, 2))
|
2015-03-31 20:15:22 +02:00
|
|
|
return result
|