Learn Before
Code

Code example for Class Variable vs Instance Variable

class Employee: manager_id = 1 # Class Variable def __init__(self, name, employee_id): self.name = name # Instance Variable self.employee_id = employee_id # Instance Variable

0

1

Updated 2021-02-08

Contributors are:

Who are from:

Tags

Python Programming Language

Data Science