unlawfulbooger@lemmy.blahaj.zone to Programmer Humor@lemmy.ml · 11 months agoOn this deserted island I could use some help()lemmy.blahaj.zoneimagemessage-square32fedilinkarrow-up11.18Karrow-down113
arrow-up11.17Karrow-down1imageOn this deserted island I could use some help()lemmy.blahaj.zoneunlawfulbooger@lemmy.blahaj.zone to Programmer Humor@lemmy.ml · 11 months agomessage-square32fedilink
minus-squareZron@lemmy.worldlinkfedilinkarrow-up21arrow-down2·11 months agoBecause exit might be a variable you use to determine if you should exit. exit() is a function that actually does the exiting. It’s the difference between pointing at a jogger and saying “run” and actually running after them.
minus-squareBronco1676@lemmy.mllinkfedilinkarrow-up17·11 months agoIf you have a variable called exit you’ve overwritten the function in that scope, and won’t be able to execute it. e.g. >>> exit=1 >>> exit() Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: 'int' object is not callable >>>
minus-squareEmergMemeHologram@startrek.websitelinkfedilinkarrow-up17·11 months agoReminds me of setting pi = 3 in my friends matlab subroutines in school.
Because exit might be a variable you use to determine if you should exit. exit() is a function that actually does the exiting.
It’s the difference between pointing at a jogger and saying “run” and actually running after them.
If you have a variable called
exit
you’ve overwritten the function in that scope, and won’t be able to execute it.e.g.
Reminds me of setting pi = 3 in my friends matlab subroutines in school.
wow it does do that. cool