Format de chaîne Python

Format de chaîne Python

Il est difficile de revoir le document, alors ne notez que les parties nécessaires.

Alignement

>>> '{:<30}'.format('left aligned')
'left aligned                  '
>>> '{:>30}'.format('right aligned')
'                 right aligned'
>>> '{:^30}'.format('centered')
'           centered           '
>>> '{:*^30}'.format('centered')
'***********centered***********'

Numéro de base

>>> "int: {0:d};  hex: {0:x};  oct: {0:o};  bin: {0:b}".format(42)
'int: 42;  hex: 2a;  oct: 52;  bin: 101010'
>>> "int: {0:d};  hex: {0:#x};  oct: {0:#o};  bin: {0:#b}".format(42)
'int: 42;  hex: 0x2a;  oct: 0o52;  bin: 0b101010'

Entier à trois chiffres séparé

>>> "{:,}".format(1000000)
'1,000,000'

Attributs d'objet de dictionnaire

>>> urldata = {"scheme":"http","netloc":"qiita.com","path":"/drafts"}
>>> url = "{scheme}://{netloc}{path}".format(urldata)

Attributs de classe

** «0.» ** est important.

>>> url = "{0.scheme}://{0.netloc}{0.path}".format(urldata)

Format spécial

>>> import datetime
>>> d = datetime.datetime(2010, 7, 4, 12, 15, 58)
>>> '{:%Y-%m-%d %H:%M:%S}'.format(d)
'2010-07-04 12:15:58'

Recommended Posts

Format de chaîne Python
Format de chaîne Python
Format de chaîne
Format de chaîne 2
Chaîne Python
Indentation Python et format de chaîne
[Python 2/3] Analyser la chaîne de format
Format de chaîne avec l'opérateur Python%
Python: combinaison de chaînes
tranche de chaîne python
Type de chaîne Python2
Python # type de chaîne
format en python
Inversion de chaîne Python
expansion de variable python, format
Manipulation de chaîne en python
[Python] Assigner une chaîne sur plusieurs lignes
Maître de manipulation de chaînes Python
Format d'image en Python
[Python2] Chaîne de date → UnixTime → Chaîne de date
Notes sur le format Python Pickle
Utilisation méthodique du format [Python]
Génération de chaînes aléatoires (Python)
Python3> chaîne de documentation / docstring
Illustration de traitement de chaîne Python
Format de séquence d'échappement de chaîne à Unicode pour Python
Formatez facilement JSON avec Python
Méthodes d'objet chaîne en Python
[Python] Utiliser une séquence de chaînes
Diverses opérations de chaîne avec Python intégré
À propos des opérateurs de comparaison de chaînes Python
Manipulation de la date des chaînes en Python
Formater json avec Vim (avec python)
python> datetime> De la chaîne de date (format ISO: 2015-12-09 12:40:08) au type datetime
Caractère f Python (chaîne formatée)
[Python3] Mettre en forme la chaîne de caractères en utilisant le nom de la variable comme clé
Application Python: Traitement des données # 3: Format des données
Formater automatiquement le code Python avec Vim
Gérez les données au format NetCDF avec Python
Gérez le format GDS II avec Python
table de référence rapide du format datetime python
Remplacement de chaîne par une expression régulière Python
6 façons d'enchaîner des objets en Python
mappe de traitement de chaîne python et lambda
Créer une chaîne aléatoire en Python
[Python] Formater quand to_csv avec des pandas
Format lors du passage d'une longue chaîne comme argument de python
python kafka
Conversion de la chaîne <-> date (date, datetime) en Python
Les bases de Python ⑤
Résumé Python
Notation d'inclusion Python
Technique Python
Étudier Python
Mémorandum Python
Python FlowFishMaster
Service Python
astuces python
fonction python ①
Les bases de Python