Advertisement
Mofeoluwa

Untitled

Apr 1st, 2020
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. class GymExercise():
  2.     def __init__(self,name,weight,reps):
  3.         self.name = name
  4.         self.weight = weight
  5.         self.reps = reps
  6. squat = GymExercise('squat',265,3)
  7. bench = GymExercise('benchpress',185,5)
  8. deadlift = GymExercise('deadlift',225,6)
  9. press = GymExercise('press',120,8)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement