Is it possible to display a list of all user functions in the IDLE session?
I can see them popping up in the autocomplete, so maybe there is other way to just display on
You can list all user-defined functions without any imports by
print([f.__name__ for f in globals().values() if type(f) == type(lambda *args: None)])
Note that lambda *args: None stands for function that does nothing and can be replaced by any arbitrary function.
lambda *args: None