HiddenLayer555@lemmy.ml to Programmer Humor@programming.devEnglish · 4 天前Python needs an actual default functionlemmy.mlexternal-linkmessage-square160fedilinkarrow-up1749arrow-down129file-text
arrow-up1720arrow-down1external-linkPython needs an actual default functionlemmy.mlHiddenLayer555@lemmy.ml to Programmer Humor@programming.devEnglish · 4 天前message-square160fedilinkfile-text
Also, do y’all call main() in the if block or do you just put the code you want to run in the if block?
minus-squareNeatNit@discuss.tchncs.delinkfedilinkarrow-up10·4 天前I definitely do for quick scripts, but I try to break this habit. The biggest advantage of def main() is that variables are local and not accessible to other functions defined in the same script, which can sometimes help catch bugs or typos.
I definitely do for quick scripts, but I try to break this habit. The biggest advantage of
def main()
is that variables are local and not accessible to other functions defined in the same script, which can sometimes help catch bugs or typos.