1

If c = '32486784298',

then '{0}{1}{2}.{3}{4}{5}.{6}{7}{8}-{9}{10}'.format(*c)

prints '324.867.842-98'.

Is there a simplest way to do this? (with no def please)

4

3 に答える 3

3

Python の最新バージョンでは、文字列形式のプレースホルダーで数値を省略できます。

>>> '{}{}{}.{}{}{}.{}{}{}-{}{}'.format(*c)
'324.867.842-98'

Python 2.7 で動作します。

于 2012-05-14T19:35:37.523 に答える
0
''.join([c[0:3],'.',c[3:6],'.',c[6:9],'-',c[9:11])

また

c[0:3]+'.'+c[3:6]+'.'+c[6:9]+'-'+c[9:11]
于 2012-05-14T19:25:01.527 に答える
-1
'%s.%s.%s-%s' % tuple(c[i:j] for i, j in ((0, 3), (3, 6), (6, 9), (9, 11)))
于 2012-05-14T20:18:58.077 に答える