Pythonについてもう少し学べるように、基本的なクラスを構築しようとしています。これまでのところ、次のものがあります。
class Bodymassindex:
count = 0
def __init__(self,name,weight,height):
self.name = name
self.weight = 14 * weight
self.height = 12 * height
notes = "no notes have been assigned yet"
bmitotal = 0
Bodymassindex.count += 1
def displayCount(self):
print "Total number of objects is %d" % Bodymassindex.count
def notesBmi(self,text):
self.notes = text
def calcBmi(self):
return ( self.weight * 703 ) / ( self.height ** 2 )
ノート変数を追加して表示するという点で、正しい方法は何ですか?
ありがとう、