VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • Python3基础之Python中格式化构建字符串的方法

摘要: Python中格式化构建字符串可以有3种方法: 元组占位符 m = 'python' astr = 'i love %s' % m print (astr) 字符串的format方法 m = 'python' astr = "i love {python}".....

Python中格式化构建字符串可以有3种方法:

元组占位符

m = 'python'
astr = 'i love %s' % m
print (astr)

字符串的format方法

m = 'python'
astr = "i love {python}".format(python=m)
print (astr)

字典格式化字符串

m = 'python'
astr = "i love %(python)s " % {'python':m}
print (astr)

大家可以根据自己的实际情况来选择合适的方法,推荐用字符串的format方法或者字典的占位格式化,因为它不会受参数的位置影响,只需要参数名称相同就行。



相关教程