181 reads
1 comment
·Dec 25, 2022
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 = ''
·