コード例 #1
0
ファイル: strength.py プロジェクト: scoleman01/GitFit
 def test(self):
     Exercise.test(self)
     print("Strength")
     print("Reps")
     print(self.reps)
     print("Sets")
     print(self.sets)
     print("Type")
     print(self.type)
コード例 #2
0
ファイル: cardio.py プロジェクト: samloop/GitFit
 def test(self):
     Exercise.test(self)
     print("Cardio")
     print(self.type)
コード例 #3
0
ファイル: stretch.py プロジェクト: scoleman01/GitFit
 def test(self):
     Exercise.test(self)
     print("Stretch")
コード例 #4
0
ファイル: exerciseclass.py プロジェクト: samloop/GitFit
 def test(self):
     Exercise.test(self)
     print("Exercise Class")
     print(self.instructor)
     print(self.type)