Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Python by Evrim ( 6 years ago )
class Daire:
def __init__(self, yaricapArg):
self.yaricap = yaricapArg
def Alan(self):
return ((self.yaricap)**2)*3
def Cevre(self):
return ((self.yaricap)*2*3)
x = int(input("Yarıçapı girin: "))
obje = Daire(x)
print("Alan = ", obje.Alan())
print("Cevre = ", obje.Cevre())
Revise this Paste