Python 3.6 的特性之一是格式化字符串。
这个 SO question (String with 'f' prefix in python-3.6) 询问格式化字符串文字的内部结构,但我不了解格式化字符串文字的确切用例。我应该在哪些情况下使用此功能?显式不是比隐式更好吗?
Python 3.6 的特性之一是格式化字符串。
这个 SO question (String with 'f' prefix in python-3.6) 询问格式化字符串文字的内部结构,但我不了解格式化字符串文字的确切用例。我应该在哪些情况下使用此功能?显式不是比隐式更好吗?
简单胜于复杂。
所以这里我们有格式化的字符串。它使字符串格式化变得简单,同时保持代码明确(与其他字符串格式化机制相比)。
title = 'Mr.'
name = 'Tom'
count = 3
# This is explicit but complex
print('Hello {title} {name}! You have {count} messages.'.format(title=title, name=name, count=count))
# This is simple but implicit
print('Hello %s %s! You have %d messages.' % (title, name, count))
# This is both explicit and simple. PERFECT!
print(f'Hello {title} {name}! You have {count} messages.')
它旨在替换str.format
简单的字符串格式。
优点:F-literal 具有更好的性能。(见下文)
缺点:F-literal 是 3.6 的新功能。
In [1]: title = 'Mr.'
...: name = 'Tom'
...: count = 3
...:
...:
In [2]: %timeit 'Hello {title} {name}! You have {count} messages.'.format(title=title, name=name, count=count)
330 ns ± 1.08 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)
In [3]: %timeit 'Hello %s %s! You have %d messages.'%(title, name, count)
417 ns ± 1.76 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)
In [4]: %timeit f'Hello {title} {name}! You have {count} messages.'
13 ns ± 0.0163 ns per loop (mean ± std. dev. of 7 runs, 100000000 loops each)
比较所有 4 种字符串格式化方式的性能
title = 'Mr.'
name = 'Tom'
count = 3
%timeit 'Hello {title} {name}! You have {count} messages.'.format(title=title, name=name, count=count)
每个循环 198 ns ± 7.88 ns(平均值 ± 标准偏差。7 次运行,每次 1000000 次循环)
%timeit 'Hello {} {}! You have {} messages.'.format(title, name, count)
每个循环 329 ns ± 7.04 ns(平均值 ± 标准偏差。7 次运行,每次 1000000 次循环)
%timeit 'Hello %s %s! You have %d messages.'%(title, name, count)
每个循环 264 ns ± 6.95 ns(平均值 ± 标准偏差。7 次运行,每次 1000000 次循环)
%timeit f'Hello {title} {name}! You have {count} messages.'
每个循环 12.1 ns ± 0.0936 ns(平均值 ± 标准偏差。7 次运行,每次 100000000 次循环)
所以最新的字符串格式化方式来自 python3.6 也是最快的。