Ответ:
def check(x, y):
if x:
if y:
return True
else:
return False
x = True
y = False
print(check(x, y))
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
def check(x, y):
if x:
if y:
return True
else:
return False
else:
return False
x = True
y = False
print(check(x, y))