美文网首页Python自学之路
python format{}函数用法

python format{}函数用法

作者: 一位学有余力的同学 | 来源:发表于2019-05-11 17:34 被阅读0次

    Python2.6 开始,新增了一种格式化字符串的函数 format() ,它增强了字符串格式化的功能。

    基本语法是通过 {} 和 : 来代替以前的 % 。

    format () 函数可以接受不限个参数,位置可以不按顺序。

    实例:

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

    更多用法点击原博客

    相关文章

      网友评论

        本文标题:python format{}函数用法

        本文链接:https://www.haomeiwen.com/subject/blffaqtx.html