python 字串設定
『%』 字元轉換說明,意味著要插入字元的位置
format='hello,%s . nice to meet you!'
name='xiaomin'
format % name
out[30]: 'hello,xiaomin . nice to meet you!'
當同事加入多個值的時候,需要使用元祖:
format='hello! %s my name is wangtao and %s'
value=('xiaomin','where are you from?')
format % value
out[37]: 'hello! xiaomin my name is wangtao and where are you from?'
%s 將插入的值轉換為字元
同時還可以fortmat 來進行設定:
1.用空的花括號來代替
'{},{},and {}'.format('firts','second','third')
out[12]: 'firts,second,and third'
2.同時可以對其設定索引
',,and '.format('firts','second','third')
out[13]: 'third,firts,and second'
3.索引使用的次數不只限定使用一次,也可以不用。
',,and '.format('firts','second','third','fouth')
總結:花括號指的是需要設定的物件,花括號裡面的數字代表索引。
4.同時還可以使用關鍵字進行設定。
from math import pi
在這裡我們還可以對π後面的小數點進行設定:比方說對π設定為兩位小數
這裡要注意設定π的格式時候用冒號表示開始設定。
5.對輸出格式的控制,左對齊,居中,右對齊
print ('\n\n'.format(pi,234,456))
3.142
234.000
456.000
6. Python字串操作
1 複製字串 str2 str1 2 鏈結字串 str abc 3 查詢字串 string.find sub string.index sub string.rfind sub string,rindex sub 4 字串比較 cmp str1,str2 cmp str1.upper str2.up...
Python字串操作
python如何判斷乙個字串只包含數字字元 python 字串比較 下面列出了常用的python實現的字串操作 strcpy sstr1,sstr2 sstr1 strcpy sstr2 sstr1 sstr1 strcpy2 print sstr2 strcat sstr1,sstr2 sstr1...
python字串操作
在 python 有各種各樣的string操作函式。在歷史上string類在 python 中經歷了一段輪迴的歷史。在最開始的時候,python 有乙個專門的string的module,要使用string的方法要先import,但後來由於眾多的 python 使用者的建議,從 python 2.0開...