Function (version 0.0.1) | index Function.html |
This package implements tools to build python package and tools.
>>> from Function import *
>>> @def_Function
def print_char(char): print(char)
...
>>> _ = print_char << "abc"
a
b
c
>>> print_char('a')
a
>>> print_char = Function(print)
>>> _ = print_char << "abc"
a
b
c
>>> print_char('a')
a
>>>
Classes | ||||||||||
|
Functions | ||
|
Data | ||
__all__ = ['def_Function', 'Function'] __author_email__ = 'mauricelambert434@gmail.com' __copyright__ = '\nPythonToolsKit Copyright (C) 2022 Maurice Lam...ome to redistribute it\nunder certain conditions.\n' __description__ = '\nThis package implements tools to build python package and tools.\n' __license__ = 'GPL-3.0 License' __maintainer__ = 'Maurice Lambert' __maintainer_email__ = 'mauricelambert434@gmail.com' __url__ = 'https://github.com/mauricelambert/PythonToolsKit' |
Author | ||
Maurice Lambert |