mudkip@lemdro.id to Programmer Humor@lemmy.mlEnglish · 2 months agoProgrammer memelemmy.mlimagemessage-square3fedilinkarrow-up191arrow-down18
arrow-up183arrow-down1imageProgrammer memelemmy.mlmudkip@lemdro.id to Programmer Humor@lemmy.mlEnglish · 2 months agomessage-square3fedilink
minus-squareJohnnyCanuck@lemmy.calinkfedilinkarrow-up18·2 months 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")