Python
47
Вклад в тег
@decorator
def foo():
..
foo = decorator(foo)
@FuncDec()
def foo():
print('Hello')
foo = FuncDec()(foo)
, а именно:FuncDec
(вызывается конструктор __init__
)__call__
) вместе с параметром foowrapper
, которая и будет в дальнейшем выполняться вместо объявленной foo
foo = FuncDec(foo)
string = 'foo.bar.test.ru'
length = len(string.split('.'))
print(length)
str
) a = input()
b = input()
l = input()
N = input()
a = int(a)
b = int(b)
l = int(l)
N = int(N)
lenl = 2 * l
lena = (2 * N - 1) * a
lenb = 2*b *(N - 1)
sumlab = lenl + lena + lenb
print(sumlab)
a = int(input())
b = int(input())
l = int(input())
N = int(input())
lenl = 2 * l
lena = (2 * N - 1) * a
lenb = 2*b *(N - 1)
sumlab = lenl + lena + lenb
print(sumlab)
dictionary[new_key] = dictionary.pop(old_key)
# словарь
d1 = {1:'a', 2:'b', 3:'c', 4:'d', 5:'e'}
# словарь замен: ключ - исходный ключ из d1, значение - на какой ключ его меняем
replacements = {1: 'one', 4: 'four', 5: 'five'}
for i in d1:
if i in replacements:
d1[replacements[i]] = d1.pop(i)