gpt4 book ai didi

c# - a == b == c C# 与 Python 中的三重比较

转载 作者:行者123 更新时间:2023-11-28 20:19:58 30 4
gpt4 key购买 nike

你会如何将这段 python 代码翻译成 c#

l = [True, False]
for a in l:
for b in l:
for c in l:
print(a, b, c, a==b==c)

(输出这个)

True True True True
True True False False
True False True False
True False False False
False True True False
False True False False
False False True False
False False False True

变成类似的东西

void Main()
{
List<bool> l = new List<bool> (){true, false};
foreach(var a in l)
{
foreach(var b in l)
{
foreach(var c in l)
{
Console.WriteLine(a.ToString()+" "+b.ToString()+" "+c.ToString()+" "+(a==b==c).ToString());
}
}
}
}

不幸的是,它的工作方式不同并输出:

True True True True
True True False False
True False True False
True False False True
False True True False
False True False True
False False True True
False False False False

最佳答案

Python 有 chained comparisons所以 a == b == c 的意思是:

(a == b) and (b == c)

在 C# 中,a == b == c 被计算为:

(a == b) == c

要将 Python 的 a == b == c 转换为 C# 使用

a == b && b == c

关于c# - a == b == c C# 与 Python 中的三重比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32872157/

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