How to check multiple variables against a value in Python

2 Answers

0 votes
n = 3

x = 4
y = 5
z = 6

if n in (x, y, z):
    print('found')
else:
    print('not found')


'''
run:

not found

'''

 



answered Nov 3, 2017 by avibootz
0 votes
n = 3

x = 4
y = 3
z = 6

if n in (x, y, z):
    print('found')
else:
    print('not found')


'''
run:

found

'''

 



answered Nov 3, 2017 by avibootz

Related questions

...