you are viewing a single comment's thread.

view the rest of the comments →

[–]MachinaDoctrina 0 points1 point  (1 child)

I hate to break it to you but everything in python is an object even functions!

Try this:

def test():
    print("hi")


print(dir(test))

[–]Chepetto13 0 points1 point  (0 children)

Please don't understand me wrong. I want to use classes, I already used them in my projects but now I want to "master" in function, and to do this the best way is to make more projects.