gpt4 book ai didi

python - 如何在 Python 中将 boolean 值连接到字符串?

转载 作者:IT老高 更新时间:2023-10-28 21:43:21 26 4
gpt4 key购买 nike

我要完成以下工作

answer = True
myvar = "the answer is " + answer

并让 myvar 的值为“答案为真”。我很确定你可以在 Java 中做到这一点。

最佳答案

answer = True
myvar = "the answer is " + str(answer)

Python 不进行隐式转换,因为隐式转换可以掩盖严重的逻辑错误。只需将答案转换为字符串本身即可获得其字符串表示形式(“True”),或使用字符串格式,如下所示:

myvar = "the answer is %s" % answer

注意,答案必须设置为True(大写很重要)。

关于python - 如何在 Python 中将 boolean 值连接到字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10509803/

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