Fill the fields of the record : Class fields : Class PYTHON examples


PYTHON examples » Class » Class fields »

 

Fill the fields of the record


 
class Employee:
    pass

john = Employee() # Create an empty employee record

# Fill the fields of the record
john.name = 'John Doe'
john.dept = 'computer lab'
john.salary = 1000


           
         
  



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Class
» Class fields