Properties are variables that belong to a class or an object. They can be used to store data or state:

class MyClass:
    var my_property = 0
Comments