-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPython_Ödev3.py
85 lines (68 loc) · 2.59 KB
/
Python_Ödev3.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
class Personel:
def __init__(self, ad, departman, calisma_yili, maas):
self.ad = ad
self.departman = departman
self.calisma_yili = calisma_yili
self.maas = maas
class Firma:
personel_listesi = []
def personel_ekle(self, personel):
self.personel_listesi.append(personel)
print("-" * 20)
print(f"\"{personel.ad}\" kişisi listeye eklendi.")
print("-" * 20)
def personel_listele(self):
print("-" * 20)
for personel in self.personel_listesi:
print(f"Ad: {personel.ad}")
print(f"Departman: {personel.departman}")
print(f"Çalışma Yılı: {personel.calisma_yili}")
print(f"Maaş: {personel.maas}")
print("-" * 20)
def maas_zammi(self, personel, zam_orani):
personel.maas *= (1 + zam_orani / 100)
print("-" * 20)
print("Maaş zammı gerçekleştirildi.")
print("-" * 20)
def personel_cikart(self, personel):
self.personel_listesi.remove(personel)
print("-" * 20)
print("Personel listeden çıkartıldı.")
print("-" * 20)
def menu():
while True:
print("Yapmak istediğiniz işlemi seçiniz:")
print("1. Personel Ekle")
print("2. Personel Listele")
print("3. Maaş Zammı Yap")
print("4. Personel Çıkar")
print("5. Çıkış")
secim = int(input("Seçiminiz: "))
if secim == 1:
ad = input("Ad: ")
departman = input("Departman: ")
calisma_yili = int(input("Çalışma Yılı: "))
maas = int(input("Maaş: "))
personel = Personel(ad, departman, calisma_yili, maas)
firma.personel_ekle(personel)
elif secim == 2:
firma.personel_listele()
elif secim == 3:
ad = input("Maaş zammı yapmak istediğiniz personelin adını giriniz: ")
zam_orani = int(input("Zam oranını giriniz: "))
for personel in firma.personel_listesi:
if personel.ad == ad:
firma.maas_zammi(personel,zam_orani)
break
elif secim == 4:
ad = input("Çıkarmak istediğiniz personelin adını giriniz: ")
for personel in firma.personel_listesi:
if personel.ad == ad:
firma.personel_cikart(personel)
break
elif secim == 5:
break
else:
print("Geçersiz seçim!")
firma = Firma()
menu()