Last active
June 28, 2021 07:38
-
-
Save Abhayparashar31/e88bc8867c2ebc75a02d81f291b5e5c4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class GenerateSalary: | |
| ## Variable | |
| base_salary = 15000 | |
| ## Method | |
| def __init__(self,experience): | |
| self.experience = experience | |
| self.salary = self.base_salary*self.experience | |
| print(self.salary) | |
| ## Objects | |
| Ajay = GenerateSalary(5) ## Object 1 | |
| Rahul = GenerateSalary(6) ## Object 2 | |
| --------------------OUTPUT----------------------- | |
| 75000 | |
| 90000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment