Answers for "python set class variable"

0

python set class variable

class MyClass:
    static_elem = 123 # This is a static element belonging to the class

    def __init__(self):
        self.object_elem = 456 # This is an instance / object element
Posted by: Guest on April-05-2021

Code answers related to "python set class variable"

Python Answers by Framework

Browse Popular Code Answers by Language