mudkip@lemdro.id to Programmer Humor@lemmy.mlEnglish · 1 month agoProgrammer memelemmy.mlimagemessage-square3fedilinkarrow-up190
arrow-up190imageProgrammer memelemmy.mlmudkip@lemdro.id to Programmer Humor@lemmy.mlEnglish · 1 month agomessage-square3fedilink
minus-squareJohnnyCanuck@lemmy.calinkfedilinkarrow-up16·1 month agoimport inspect, builtins def HelloWorld(funcname): caller = inspect.currentframe().f_code.co_name getattr(builtins, funcname)(caller) HelloWorld("print")
import inspect, builtins def HelloWorld(funcname): caller = inspect.currentframe().f_code.co_name getattr(builtins, funcname)(caller) HelloWorld("print")