“Jika atau Python” Kode Jawaban

Python atau

# <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

Jika atau Python

x = 1; y = 1

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

Python atau dalam pernyataan IF

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

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

Jawaban yang mirip dengan “Jika atau Python”

Pertanyaan yang mirip dengan “Jika atau Python”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya