中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python中強大的format函數實例詳解

發布時間:2020-10-16 02:11:49 來源:腳本之家 閱讀:193 作者:hp_cpp 欄目:開發技術

python中format函數用于字符串的格式化

自python2.6開始,新增了一種格式化字符串的函數str.format(),此函數可以快速處理各種字符串。

語法

它通過{}和:來代替%。

請看下面的示例,基本上總結了format函數在python的中所有用法

#通過位置
print '{0},{1}'.format('chuhao',20)
print '{},{}'.format('chuhao',20)
print '{1},{0},{1}'.format('chuhao',20)
#通過關鍵字參數
print '{name},{age}'.format(age=18,name='chuhao')
class Person:
  def __init__(self,name,age):
    self.name = name
    self.age = age
  def __str__(self):
    return 'This guy is {self.name},is {self.age} old'.format(self=self)
print str(Person('chuhao',18))
#通過映射 list
a_list = ['chuhao',20,'china']
print 'my name is {0[0]},from {0[2]},age is {0[1]}'.format(a_list)
#my name is chuhao,from china,age is 20
#通過映射 dict
b_dict = {'name':'chuhao','age':20,'province':'shanxi'}
print 'my name is {name}, age is {age},from {province}'.format(**b_dict)
#my name is chuhao, age is 20,from shanxi
#填充與對齊
print '{:>8}'.format('189')
#   189
print '{:0>8}'.format('189')
#00000189
print '{:a>8}'.format('189')
#aaaaa189
#精度與類型f
#保留兩位小數
print '{:.2f}'.format(321.33345)
#321.33
#用來做金額的千位分隔符
print '{:,}'.format(1234567890)
#1,234,567,890
#其他類型 主要就是進制了,b、d、o、x分別是二進制、十進制、八進制、十六進制。
print '{:b}'.format(18) #二進制 10010
print '{:d}'.format(18) #十進制 18
print '{:o}'.format(18) #八進制 22
print '{:x}'.format(18) #十六進制12

總結

以上所述是小編給大家介紹的python中強大的format函數實例詳解,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南岸区| 徐州市| 汝南县| 芦山县| 安泽县| 砚山县| 尉犁县| 乐亭县| 手游| 蒙城县| 图们市| 原阳县| 德州市| 赣榆县| 疏附县| 察雅县| 南京市| 宝鸡市| 乐至县| 建宁县| 甘泉县| 桐城市| 南阳市| 康马县| 沈阳市| 尤溪县| 九江市| 洞口县| 仲巴县| 个旧市| 屏东市| 体育| 宁夏| 长丰县| 林州市| 兴安县| 大关县| 鄂州市| 密山市| 保山市| 项城市|