日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

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

發布時間:2023/12/1 44 豆豆
生活随笔 收集整理的這篇文章主要介紹了 如何在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.

假設有三個變量a , b和c ,我們必須檢查一個或多個變量是否具有給定值。

針對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

總結

以上是生活随笔為你收集整理的如何在Python中针对一个值检查多个变量?的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。