“python ou dans la déclaration if” Réponses codées

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

Si alors sinon Python

a = 200
b = 33
if b > a:
	print("b is greater than a")

elif a == b:
	print("a and b are equal")

else:
	print("a is greater than b")
Proud Penguin

Réponses similaires à “python ou dans la déclaration if”

Questions similaires à “python ou dans la déclaration if”

Plus de réponses similaires à “python ou dans la déclaration if” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code