fuction: decorator, dispatch
decorator
none_doce(5)
本格的に実行できる.(不便なのでdecorator
実行)义齿 from multipledispatch import dispatch
@dispatch(list)
def gen(arg_list: list):
print(arg_list)
@dispatch(str)
def gen(string: str):
print(string)
if __name__ == '__main__':
gen([1,2,3,4,5])
gen('hello')
from multipledispatch import dispatch
@dispatch(list)
def gen(arg_list: list):
print(arg_list)
@dispatch(str)
def gen(string: str):
print(string)
if __name__ == '__main__':
gen([1,2,3,4,5])
gen('hello')
Reference
この問題について(fuction: decorator, dispatch), 我々は、より多くの情報をここで見つけました https://velog.io/@markyang92/fuction-decorator-dispatchテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol