-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmethods.py
56 lines (41 loc) · 1.25 KB
/
methods.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
import datetime
# # class
class Person:
# # class attributes
# address = 'no information'
# # constructor (yapıcı metod)
def __init__(self, name, year):
# # object attributes
self.name = name
self.year = year
# # instance methods
def intro(self):
print('Hello There. I am '+ self.name )
# # instance methods
def calculateAge(self):
#bugün kodu :
today = datetime.date.today()
#bugün format :
this_year = today.year
return this_year - self.year
# # object (instance)
p1 = Person(name='dogan', year= 1993)
# p2 = Person(name ='ahmet', year = 1992)
# p1.intro()
# p2.intro()
print(f'adım: {p1.name} ve yaşım: {p1.calculateAge()}')
# print(f'adım: {p2.name} ve yaşım: {p2.calculateAge()}')
class Circle:
# Class object attribute
pi = 3.14
def __init__(self, yaricap=1):
self.yaricap = yaricap
# Methods
def cevre_hesapla(self):
return 2 * self.pi * self.yaricap
def alan_hesapla(self):
return self.pi * (self.yaricap**2)
c1 = Circle()
c2 = Circle(5)
print(f'c1 : alan = {c1.alan_hesapla()} çevre = {c1.cevre_hesapla()}')
print(f'c2 : alan = {c2.alan_hesapla()} çevre = {c2.cevre_hesapla()}')