MCPcopy Create free account
hub / github.com/Mrinank-Bhowmick/python-beginner-projects / Player

Class Player

projects/TennisTournamentSim/main.py:61–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

59
60
61class Player:
62 def __init__(self, first, last, skill, school, win, loss): # Constructor
63 self.first = first
64 self.last = last
65 self.skill = skill
66 self.school = school
67 self.win = win
68 self.loss = loss
69
70
71# Looks like Shit

Callers 1

main.pyFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected