Ответ:
for a in range(2):
for b in range(2):
#not(not a or not b)
if (not a or not b):
print(a, b)
#not(a and (not b or a) and b)
if (a and (not b or a) and b):
Объяснение:
V poslědnjim zadanju jest pomylka: a and (b or c) (?) not a - odsutstvuje operator!
Jestli značenje funkcije trěba odrěčna, vstavite s not().
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
for a in range(2):
for b in range(2):
#not(not a or not b)
if (not a or not b):
print(a, b)
for a in range(2):
for b in range(2):
#not(a and (not b or a) and b)
if (a and (not b or a) and b):
print(a, b)
Объяснение:
V poslědnjim zadanju jest pomylka: a and (b or c) (?) not a - odsutstvuje operator!
Jestli značenje funkcije trěba odrěčna, vstavite s not().