gpt4 book ai didi

Python:打印函数的返回值

转载 作者:行者123 更新时间:2023-11-28 21:12:07 25 4
gpt4 key购买 nike

<分区>

python 2.7。下面的函数返回 True 或 False。我正在尝试打印此结果。现在我知道我可以用“打印”替换“返回”,但我不想从函数内部打印。

def OR_Gate():                                              
a = raw_input("Input A:")
b = raw_input("Input B:")
if a == True or b == True:
return True
if a == False and b == False:
return False

print OR_Gate()

当我运行以下代码时,系统提示我输入 a 和 b 的值,然后输出为“None”,而不是 True 或 False。如何打印函数 OR_Gate 的返回值?

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