-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathh.py
More file actions
24 lines (18 loc) · 674 Bytes
/
h.py
File metadata and controls
24 lines (18 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class H():
## def __init__(self):
## self.a=input('senin kai zherin auyryp tur?(bas / tis:')
def ter(s):
print('\n',s,'sen terapia boliminde emdelu kereksiz,sizdi spisokka engizemiz')
def stomac(d):
print('\n',d,'sen stomatologia boliminde emdelu kereksiz,sizdi spisokka engizemiz')
def registr(n):
n=input('atyn kim?')
a=input('senin kai zherin auyryp tur?(bas / tis):')
if a=='bas':
print('sen terapia bolimine bar!')
return H.ter(n)
if a=='tis':
print('sen stomatologia bolimine bar!')
return H.stomac(n)
c=H()
c.registr()