Respostas
respondido por:
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:
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 similares
4 anos atrás
4 anos atrás
6 anos atrás
6 anos atrás
8 anos atrás
8 anos atrás