python字符串格式化的几个方法_Python几种字符串格式化方法及其性能比较

线上测试结果:

add 0.4576963 # 加号拼接

%-formatting 0.37454160000000014 # % 格式化

str.format 0.44149049999999956 # .format 位置参数

str.format_kw 0.7051137000000001 # .format 关键字参数

f-string 0.2885597000000004 # f字符串

性能最好,且最易用的就是 f字符串

import timeit

def add():

status = 200

body = "hello world"

return "Status: " \+ str(status) + "\\r\\n" \+ body + "\\r\\n"

def old_style():

status = 200

body = "hello world"

return "Status: %s\\r\\n%s\\r\\n" % (status, body)

def formatter1():

status = 200

body = "hello world"

return "Status: {}\\r\\n{}\\r\\n".format(status, body)

def formatter2():

status = 200

body = "hello world"

return "Status: {status}\\r\\n{body}\\r\\n".format(status=status, body=body)

def f_string():

status = 200

body = "hello world"

return f"Status: {status}\\r\\n{body}\\r\\n"

print("add", min(timeit.repeat(lambda: add())))

print("%-formatting", min(timeit.repeat(lambda: old_style())))

print("str.format", min(timeit.repeat(lambda: formatter1())))

print("str.format_kw", min(timeit.repeat(lambda: formatter2())))

print("f-string", min(timeit.repeat(lambda: f_string())))

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值