Open ghost opened 3 years ago
You could put the functions into dictionaries, small example:
def foo(bar): print(bar) func_dict = { 'foo': foo } func_dict['foo']('Hello world')
You could put the functions into dictionaries, small example: