Sign in
Log inSign up
Maxi Contieri⭐⭐⭐

1 comment

Syed Jafer K
Syed Jafer K
Dec 25, 2022

Nice one. I feel it will also apply to instance variables,

class Employee:
    def __init__(self):
        self.employee_first_name = ''

to this,

class Employee:
    def __init__(self):
        self.first_name = ''
·