| 1 | class Employee: |
| 2 | language = "Python" # This is a class attribute |
| 3 | salary = 1200000 |
| 4 | |
| 5 | def getInfo(self): |
| 6 | print(f"The language is {self.language}. The salary is {self.salary}") |
| 7 | |
| 8 | @staticmethod |
| 9 | def greet(): |
| 10 | print("Good morning") |
| 11 | |
| 12 | |
| 13 | harry = Employee() |