>>> number = 1234567890 >>> f"{number:,}" '1,234,567,890' ====================== This came from your example, do you see the single quotes. ====================== ' 1,234,567,890'
When using the print cmd, you don't get those as indicated in the previous post.
Comment
>>> number = 1234567890
>>> f"{number:,}"
'1,234,567,890'
======================
This came from your example,
do you see the single quotes.
======================
' 1,234,567,890'
When using the print cmd,
you don't get those as indicated in the
previous post.