I've looked at online Python tutorials, and one specific aspect I'm having trouble understanding are classes.
I been on Codecademy, and also many Pygame tutorials. There are sections that include classes, but I don't understand the functionality of them, or how to use them.
I understand that the code is something like this:
class someClass():
    def __init__(self, thing1, thing2, thing3):
        self.thing1 = thing1
        self.thing2 = thing2
        self.thing3 = thing3
I just don't understand how you would use them and what you would use them for. If anybody could help me, I would really appreciate it!
 
     
     
     
    