1172
On this deserted island I could use some help()
(lemmy.blahaj.zone)
Post funny things about programming here! (Or just rant about your favourite programming language.)
“exit”
✈️: Use exit() or Ctrl-D (I.e. EOF) to exit
I mean if they can see that we type exit and show us this message, why could they not just start the exiting when we type exit?
This is the code (Github link):
What happens is that the python repl calls
__repr__
automatically on each variable/statement that you type into the repl (except assignments e.g.x = 1
). But this basically only happens in the repl. So "executing" onlyexit
wouldn't work in a python script as it is not calling__repr__
automatically, so better you learn how to do it right than using justexit
in your python scripts and scratching your head why it works in the repl but not in your code.