Let's say I have 10 really random functions in a python file. I could keep them like that, or I could bundle them into a class.
Just for example:
def one:
pass
def two:
pass
#more 8 functions
If I wanted to bundle them into a class would it be more efficient or it doesn't make a difference?
class R:
def one:
pass
#more 9 functions
So, which option is memory wise better?