@[email protected] to Programmer [email protected] • 1 year 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.zone@[email protected] to Programmer [email protected] • 1 year agomessage-square32fedilink
minus-square@[email protected]linkfedilink19•1 year 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-square@[email protected]linkfedilink17•1 year 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 "", line 1, in TypeError: 'int' object is not callable >>>
minus-square@[email protected]linkfedilink17•1 year 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.
>>> exit=1 >>> exit() Traceback (most recent call last): File "", line 1, in TypeError: 'int' object is not callable >>>
Reminds me of setting pi = 3 in my friends matlab subroutines in school.
wow it does do that. cool