gpt4 book ai didi

python - 有没有办法在 Python 高级字符串格式 "foo {}".format(bar) 中添加条件字符串?

转载 作者:行者123 更新时间:2023-11-28 19:31:02 26 4
gpt4 key购买 nike

比如我有这样一行代码

if checked:
checked_string = "check"
else:
checked_string = "uncheck"

print "You can {} that step!".format(checked_string)

有捷径吗?我只是好奇。

最佳答案

print "You can {} that step!".format('check' if checked else 'uncheck')

关于python - 有没有办法在 Python 高级字符串格式 "foo {}".format(bar) 中添加条件字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10135080/

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