1. str.format():使用「{}」佔位符格式化字串(佔位符中的索引號形式和鍵值對形式可以混合使用)。
1 >>> string = 'python{}, django{}, tornado{}'.format(2.7, 'web', 'tornado') # 有多少个{}占位符就有多少个值与其对应,按照顺序“填”进字符串中 2 >>> string 3 'python2.7, djangoweb, tornadotornado' 4 >>> string = 'python{}, django{}, tornado{}'.format(2.7, 'web') 5 Traceback (most recent call last): 6 File "<pyshell#6>", line 1, in <module> 7 string = 'python{}, django{}, tornado{}'.format(2.7, 'web') 8 IndexError: tuple index out of range 9 >>> string = 'python{0}, django{2}, tornado{1}'.format(2.7, 'web', 'tornado') # 也可以指定“填”进去的值(从0开始,后面的值不一定都要用上,但是要保证指定的位置是有值的)10 >>> string11 'python2.7, djangotornado, tornadoweb'12 >>> string = 'python{py}, django{dja}, tornado{tor}'.format(tor='tornado', dja='web', py=2.7) # 可以使用键值对的形式赋值13 >>> string14 'python2.7, djangoweb, tornadotornado'15 >>>
2. 使用「%」進行字串格式化。
%c | #轉為單字元 |
%r | 轉為用repr()表達的字串 |
%s | 轉為用str()表達的字串 |
#%d或%i | 轉為有符號的十進位整數 |
%u | 轉為無符號的十進制整數 |
%o | 轉為無符號的八進位整數 |
%x | #轉為無符號的十六進位整數,十六進位字母以小寫表示 |
%X | 轉為無符號的十六進位整數,十六進位字母以大寫表示 |
%e | 轉為科學計數法表達的浮點數,其中的e以小寫表示 |
%E | 轉為科學計數法表達的浮點數,其中的E以大寫表示 |
%f或#F | 轉為浮點數 |
%g | 由Python根據數字的大小自動判斷轉換為%e或%f |
由Python根據數字的大小自動判斷轉換為%E或%F | |
#輸出「%」 |
##
#
輔助格式化符號表
定義寬度或小數點的精確度 | |
+ | |
# | |
0 | |
m.n | |
# |
以上是Python之str操作詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!