當前位置: 首頁>>代碼示例>>Python>>正文


Python Team.add_player方法代碼示例

本文整理匯總了Python中team.Team.add_player方法的典型用法代碼示例。如果您正苦於以下問題:Python Team.add_player方法的具體用法?Python Team.add_player怎麽用?Python Team.add_player使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在team.Team的用法示例。


在下文中一共展示了Team.add_player方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: from team import Team [as 別名]
# 或者: from team.Team import add_player [as 別名]
    def __init__(self, games, schoolA, schoolB, playersA, playersB):
        self.games = games
        teamA = Team(schoolA)
        teamB = Team(schoolB)

        for player in playersA.split(","): #splitting the names by the comma (in the input-Kevin:1,) and adding it to the player list
            teamA.add_player(player)

        for player in playersB.split(","): #same thing with the opponent
            teamB.add_player(player)


        self.teamA = teamA
        self.teamB = teamB
        self.playersA = playersA
        self.playersB = playersB
開發者ID:juliasgan,項目名稱:tennis_tracker,代碼行數:18,代碼來源:set.py

示例2: TeamTest

# 需要導入模塊: from team import Team [as 別名]
# 或者: from team.Team import add_player [as 別名]
class TeamTest(unittest.TestCase):

    def setUp(self):
        self.player1 = Player(None, None)
        self.team = Team("test", bullet.btVector3(0, 0, 0), [self.player1], "ignore", 0)

    def test_add_player(self):
        p2 = Player(None, None)
        self.team.add_player(p2)
        self.assertIn(p2, self.team.players)

    def test_remove_player(self):
        self.team.remove_player(self.player1)
        self.assertNotIn(self.player1, self.team.players)

    def test_add_score(self):
        self.team.add_score(5)
        self.assertEqual(self.team.score, 5)
開發者ID:kyphelps,項目名稱:pynecraft,代碼行數:20,代碼來源:team_test.py

示例3: test_add_player

# 需要導入模塊: from team import Team [as 別名]
# 或者: from team.Team import add_player [as 別名]
 def test_add_player(self):
     teamA = Team("Cate")
     playerA = Player("Kevin")
     teamA.add_player(playerA)
     self.assertEqual([playerA],teamA.players)
開發者ID:juliasgan,項目名稱:tennis_tracker,代碼行數:7,代碼來源:test_team.py


注:本文中的team.Team.add_player方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。