«Данный» → «Этот»

Практически всегда мы можем заменить слово «данный» на «этот». Смысл не потеряется, зато уйдет ненужный формализм.

 
9
Kudos
 
9
Kudos

Now read this

Function type in Python

UPD: Function type in Python is types.FunctionType. Running in the Python interactive interpreter this: def spam(): pass print(type(spam)) produces: builtins.function The function type is builtins.function, quite logically. Now, consider... Continue →