>> name = {'f-6ren">
gpt4 book ai didi

python - 使用 python 字符串格式有条件地包括其他字符

转载 作者:行者123 更新时间:2023-11-28 20:44:59 24 4
gpt4 key购买 nike

仅当变量不为空时,是否可以使用 python 的字符串格式有条件地包含其他字符以及字符串变量?

>>> format_string = "{last}, {first}"
>>> name = {'first': 'John', 'last':'Smith'}
>>> format_string.format(**name)
'Smith, John' # great!
>>> name = {'first': 'John', 'last':''}
>>> format_string.format(**name)
', John' # don't want the comma and space here, just 'John'

我想使用相同的format_string 变量来处理 firstlast 中空值或非空值的任意组合name 字典。

在 python 中执行此操作的最简单方法是什么?

最佳答案

你为什么不使用strip() :

>>> format_string = "{last}, {first}"
>>> name = {'first': 'John', 'last':''}
>>> format_string.format(**name).strip(', ')
>>> 'John'

关于python - 使用 python 字符串格式有条件地包括其他字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24591074/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com