“python ou em If Declaração” Respostas de código

Se ou python

x = 1; y = 1

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

python ou em If Declaração

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

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

se então mais 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

Respostas semelhantes a “python ou em If Declaração”

Perguntas semelhantes a “python ou em If Declaração”

Mais respostas relacionadas para “python ou em If Declaração” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código