Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
4152 Prikazi

Hi, when i have a big number(eg : 458922211,99 ), i want to display the spaces between the number (458 922 211,99). How to do that ? thanks

Avatar
Opusti
Best Answer

Hi nailyk, In your report.py, do as per following changes,

for example,

import re
a = 458922211
b = str(a)
c = re.findall('.{%s}'%3,b)  
print "list:::",c  
d = ' '.join(c)   
print "Final Output:::",d

Output,

 list::: ['458', '922', '211']
 Final Output::: 458 922 211
Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
1
mar. 15
6120
2
dec. 22
7418
3
mar. 15
6387
2
mar. 22
21737
1
jan. 24
5284