AT
Size: a a a
AT
ПЯ
ПЯ
l
Р
def one(action=None):
if action is None:
return 1
else:
return action(1)
def two(action=None):
if action is None:
return 2
else:
return action(2)
def plus(num):
def internal(other_num):
return num + other_num
return internal
print(one(plus(two())))ПЯ
def one(action=None):
if action is None:
return 1
else:
return action(1)
def two(action=None):
if action is None:
return 2
else:
return action(2)
def plus(num):
def internal(other_num):
return num + other_num
return internal
print(one(plus(two())))ПЯ
B
pip install keyboardimport keyboard
keyboard.write("Текст")B
pip install keyboardimport keyboard
keyboard.write("Текст")Р
Р
БГ
Р
B
Р
B
Р