mudkip@lemdro.id to Programmer Humor@lemmy.mlEnglish · 1 year agoProgrammer memelemmy.mlimagemessage-square3linkfedilinkarrow-up187arrow-down19
arrow-up178arrow-down1imageProgrammer memelemmy.mlmudkip@lemdro.id to Programmer Humor@lemmy.mlEnglish · 1 year agomessage-square3linkfedilink
minus-squareJohnnyCanuck@lemmy.calinkfedilinkarrow-up17·1 year 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")