如何在Python中针对一个值检查多个变量?

Given multiple variables and they are assigned some values, we have to test a value with these variables.

给定多个变量并为其分配了一些值,我们必须使用这些变量测试一个值。

Let, there are three variables a, b and c and we have to check whether one or more variables have the given value.

假设有三个变量abc ,我们必须检查一个或多个变量是否具有给定值。

针对Python中的值测试多个变量的程序 (Program to test multiple variables against a value in Python)

a = 10
b = 20
c = 30

# method 1
if a == 10 or b == 10 or c == 10:
  print("True")
else:
  print("False")  

# method 2
if 10 in (a, b, c):
  print("True")
else:
  print("False")  

# method 3
if 10 in {a, b, c}:
  print("True")
else:
  print("False")  

Output

输出量

True
True
True


翻译自: https://www.includehelp.com/python/how-to-check-multiple-variables-against-a-value.aspx

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值