hello I might have a strange question. im working with somemodule in which some functions have similiar names, however they differ in a piece of the function name. to access them more flexible way i was thinking if it would be possible to create a variable or something that would represent a variable. or is there another way to access the different function with a similiar name in a flexible manner? one idea would have to have something like this:
a = print() # a should be the print function now a('hello world.') # this should print: hello world
obviously this doesn't work but is there some way to archieve what im looking for? thank you in advance!