Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Player:
- def __init__(self, name, sprint, dribble, passing, shooting):
- self.__name = name
- self.__sprint = sprint
- self.__dribble = dribble
- self.__passing = passing
- self.__shooting = shooting
- def name(self):
- return self.__name
- def __str__(self):
- result = f"Player: {self.__name}\n"
- result += f"Sprint: {self.__sprint}\n"
- result += f"Dribble: {self.__dribble}\n"
- result += f"Passing: {self.__passing}\n"
- result += f"Shooting: {self.__shooting}"
- return result
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement