-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsonHarf.py
More file actions
43 lines (29 loc) · 993 Bytes
/
sonHarf.py
File metadata and controls
43 lines (29 loc) · 993 Bytes
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
import sys
while True:
str = str(input("Adın Ne?\n"))
if str.endswith("a"):
print(str+"'nın Bilgisayarı")
elif str.endswith("e"):
print(str+"'nin Bilgisayarı")
elif str.endswith("i"):
print(str+"'nin Bilgisayarı")
elif str.endswith("ı"):
print(str+"'nın Bilgisayarı")
elif str.endswith("o"):
print(str+"'nun Bilgisayarı")
elif str.endswith("ö"):
print(str+"'nün Bilgisayarı")
elif str.endswith("u"):
print(str+"'nun Bilgisayarı")
elif str.endswith("ü"):
print(str+"'nün Bilgisayarı")
elif str.endswith("b"):
print(str+"'in Bilgisayarı")
elif str.endswith("c"):
print(str+"'ın Bilgisayarı")
elif str.endswith("d"):
print(str+"'nin Bilgisayarı")
elif str.endswith("af"):
print(str+"'ın Bilgisayarı")
else:
print("Geçersiz bir ad yazdınız. Tekrar Deneyin")