“Si ou Python” Réponses codées

python ou

# <value> or <value> -> bool

# If the values are either or both truthy,
# return True, otherwise False

# Use bool(<value>) to know whether a value
# is truthy or falsy

#  a \ b | True | False
# -------+------+-------
#  True  | True | True
# -------+------+-------
#  False | True | False

print(True or True) # True
print(True or False) # True
print(False or False) # False

print(1 or 0) # True or False == True
print([] or {} or ()) # (False or False) or False == False
print([1, 2] or (3, 4)) # True or True == True
Nutron

Si ou Python

x = 1; y = 1

if x == 1 or y == 1:
  print(x, y)
# 1 1
khuDDD

python ou dans la déclaration if

weather = input("How's the weather? ")

if weather == "Good!" or weather == "Great!": 
	print('Glad to hear!')
else: 
	print('Too bad!')
Jolly Jellyfish

Réponses similaires à “Si ou Python”

Questions similaires à “Si ou Python”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code