Is there any Julia function or a straightforward way that can format a large integer number as a String object in which every 3 digits can become delimited by comma (,) from the end?
This thing we can do in Python using f-String. E.g.
>>> num = 9999999999
>>> num
9999999999
>>> f'{num:,}'
'9,999,999,999'