[PYTHON] Notation de format

t = (1, 2, 3)
print('{0[0]} {0[2]}'.format(t)) #1 3
print('{t[0]} {t[2]}'.format(t=t)) #1 3
print('{} {}'.format(t[0], t[2])) #1 3 Ceci est gênant lorsque le nombre augmente
print('{0} {2}'.format(*t)) #1 3 Déploiement
print('{0} {2}'.format(1, 2, 3)) #1 3 Idem que ci-dessus

d = {'name': 'jun', 'family': 'sakai'}
print('{0[name]} {0[family]}'.format(d)) #jun sakai
print('{name} {family}'.format(**d)) #déploiement de jun sakai
print('{name} {family}'.format(name='jun', family='sakai')) #jun sakai Idem que ci-dessus

print('{:<30}'.format('left')) #Le tout est de 30 caractères et est affiché à gauche
print('{:>30}'.format('right')) #Le tout est affiché sur le côté droit avec 30 caractères
print('{0:^30}'.format('center')) #Le tout s'affiche en 30 caractères près du centre
print('{0:*^30}'.format('center')) #Le tout est affiché en 30 caractères près du centre,*Comblez le vide avec
print('{name:*^30}'.format(name='center')) #Comme ci-dessus
print('{name:{fill}{align}{width}}'.format(name='center', fill='*', align='^', width=30)) #Comme ci-dessus
print('{:,}'.format(123456789)) #123,456,789
print('{:+f} {:+f}'.format(3.14, -3.14)) #+3.140000 -3.140000
print('{:f} {:f}'.format(3.14, -3.14)) #3.140000 -3.140000
print('{:-f} {:-f}'.format(3.14, -3.14)) #3.140000 -3.140000
print('{:.2%}'.format(19/22)) #86.36%
print('{}'.format(19/22)) #0.8636363636363636

print(int(100), hex(100), oct(100), bin(100)) #100 0x64 0o144 0b1100100
print('{0:d} {0:#x} {0:#o} {0:#b}'.format(100))  #100 0x64 0o144 0b1100100
print('{0:d} {0:x} {0:o} {0:b}'.format(100))  #100 64 144 1100100 0x,0o,L'affichage tel que 0b disparaît

for i in range(20):
    for base in 'bdX':
        print('{:5{base}}'.format(i, base=base), end=' ')
    print()

Résultat de l'exécution:

1 3
1 3
1 3
1 3
1 3
jun sakai
jun sakai
jun sakai
left                          
                         right
            center            
************center************
************center************
************center************
123,456,789
+3.140000 -3.140000
3.140000 -3.140000
3.140000 -3.140000
86.36%
0.8636363636363636
100 0x64 0o144 0b1100100
100 0x64 100 0b1100100
100 64 100 1100100
    0     0     0 
    1     1     1 
   10     2     2 
   11     3     3 
  100     4     4 
  101     5     5 
  110     6     6 
  111     7     7 
 1000     8     8 
 1001     9     9 
 1010    10     A 
 1011    11     B 
 1100    12     C 
 1101    13     D 
 1110    14     E 
 1111    15     F 
10000    16    10 
10001    17    11 
10010    18    12 
10011    19    13 

Recommended Posts

Notation de format
Notation d'inclusion
Format de chaîne
Format de chaîne 2
Notation d'inclusion
Format de chaîne Python
Format de chaîne Python
Notation complète du dictionnaire
format en python
Visualiser N-aire