401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
|
return "la"
_zBinary = re.compile("^[01]+$")
def formatNumber (s):
nLen = len(s)
if nLen <= 4:
return s
sRes = ""
# nombre ordinaire
nEnd = nLen
while nEnd > 0:
nStart = max(nEnd-3, 0)
sRes = s[nStart:nEnd] + " " + sRes if sRes else s[nStart:nEnd]
|
|
|
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
|
return "la"
_zBinary = re.compile("^[01]+$")
def formatNumber (s):
nLen = len(s)
if nLen < 4:
return s
sRes = ""
# nombre ordinaire
nEnd = nLen
while nEnd > 0:
nStart = max(nEnd-3, 0)
sRes = s[nStart:nEnd] + " " + sRes if sRes else s[nStart:nEnd]
|