Re: 3 number and dot..
- From: Abandoned <besturk@xxxxxxxxx>
- Date: Wed, 31 Oct 2007 14:09:10 -0700
On Oct 31, 10:50 pm, Roberto Bonvallet <rbonv...@xxxxxxxxx> wrote:
On 31 oct, 16:58, Abandoned <best...@xxxxxxxxx> wrote:
Hi..
I want to do this:
for examle:
12332321 ==> 12.332.321
How can i do?'12.332.321'
x = 12332321
'.'.join(''.join(i for n, i in g) for k, g in groupby(enumerate(reversed(str(x))), lambda (n, i): n//3))[::-1]
--
Roberto Bonvallet
Thank you but it give me this error:
NameError: name 'groupby' is not defined
.
- References:
- 3 number and dot..
- From: Abandoned
- Re: 3 number and dot..
- From: Roberto Bonvallet
- 3 number and dot..
- Prev by Date: Re: 3 number and dot..
- Next by Date: Re: 3 number and dot..
- Previous by thread: Re: 3 number and dot..
- Next by thread: Re: 3 number and dot..
- Index(es):
Relevant Pages
|