当前位置: 首页 > 图灵资讯 > 行业资讯> Python format函数的用法

Python format函数的用法

来源:图灵python
时间: 2024-08-21 22:28:55

字符串有时涉及格式化。在python的新版本更新中,我们得到了一种新的函数方法format,也可以与其他函数结合使用。让我们简要解释一下format函数,然后介绍一下使用方法。

1、说明

python2format.format函数常与print()函数结合使用,具有较强的格式化输出能力。

2、format 函数可以接受无限的参数,位置可以不按顺序。

>>>"{}{}".format("hello","world")#指定位置不设置,按默认顺序
'helloworld'

>>>"{0}{1}".format("hello","world")#设置指定位置
'helloworld'

>>>"{1}{0}{1}".format("hello","world")#设置指定位置
'worldhelloworld'

3、在字典添加之前,使用字典进入**

grade={'I':'拦路雨','状态':'写博客'}
print('{I}更无聊,在{状态}'.format(**grade))#字典前加上**

以上是Python format函数的使用可以格式化和输出字符串。学习基本内容后,请尽快尝试。更多Python学习推荐:python教学