Informática, perguntado por leticiaflima2005, 6 meses atrás

eacreva um algoritimo com todos operadores lógios (E OU NÃO)​

Soluções para a tarefa

Respondido por juliacristinabr1100
0

Resposta:

explica melhor pra dar a resposta pfvr


leticiaflima2005: Um algoritimo com todas as operações lógicas(E OU NÃO)
Respondido por Hertz15
2

# Python 3+

x = True

y = False

print('x and y is: ',x and y)

print('x or y is: ',x or y)

print('not x is: ',not x)

#

# Output

# x and y is:  False

# x or y is:  True

# not x is:  False

Perguntas interessantes