Skip to content

Instantly share code, notes, and snippets.

@Abhayparashar31
Last active June 28, 2021 07:38
Show Gist options
  • Save Abhayparashar31/e88bc8867c2ebc75a02d81f291b5e5c4 to your computer and use it in GitHub Desktop.
Save Abhayparashar31/e88bc8867c2ebc75a02d81f291b5e5c4 to your computer and use it in GitHub Desktop.
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