この記事では主にPythonのformat()メソッドに関する関連情報を紹介します。必要な方は参考にしてください
Pythonのformat()メソッドの詳しい説明
Pythonでのフォーマットされた出力文字列の使い方format( ) 関数、文字列はクラスであり、メソッドを使用できます。
Python は完全なオブジェクト指向言語であり、すべてがオブジェクトです。
文字列のパラメータは {NUM} で表されます,0、つまり最初のパラメータ 1 は 2 番目のパラメータを表し、 の後に順番に増加します。 " は 8 文字のスペースなどを占めます。
は、次のような特定の文字を追加することもできます。
# -*- coding: utf-8 -*- #==================== #File: abop.py #Author: Wendy #Date: 2013-12-03 #==================== #eclipse pydev, python3.3 age = 25 name = 'Caroline' print('{0} is {1} years old. '.format(name, age)) #输出参数 print('{0} is a girl. '.format(name)) print('{0:.3} is a decimal. '.format(1/3)) #小数点后三位 print('{0:_^11} is a 11 length. '.format(name)) #使用_补齐空位 print('{first} is as {second}. '.format(first=name, second='Wendy')) #别名替换 print('My name is {0.name}'.format(open('out.txt', 'w'))) #调用方法 print('My name is {0:8}.'.format('Fred')) #指定宽度
Caroline is 25 years old. Caroline is a girl. 0.333 is a decimal. _Caroline is a 11 length. Caroline is as Wendy. My name is out.txt My name is Fred .
以上がPythonのformat()メソッドの詳しい説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。