当前位置: 首页>>代码示例>>Python>>正文


Python Utils.read方法代码示例

本文整理汇总了Python中utils.Utils.read方法的典型用法代码示例。如果您正苦于以下问题:Python Utils.read方法的具体用法?Python Utils.read怎么用?Python Utils.read使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在utils.Utils的用法示例。


在下文中一共展示了Utils.read方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from utils import Utils [as 别名]
# 或者: from utils.Utils import read [as 别名]
    def __init__(self):
        self.deck = []
        self.players = []

        num_players = int(Utils.read("Number of players? "))
        for i in range(num_players):
            name = Utils.read("Player %d name? " % (i + 1))
            self.players.append(Player(name, self))

        self.make_deck()
开发者ID:jawsthegame,项目名称:loveletter,代码行数:12,代码来源:game.py

示例2: play

# 需要导入模块: from utils import Utils [as 别名]
# 或者: from utils.Utils import read [as 别名]
 def play(self):
   if len(self.hand) > 1:
     pick = int(Utils.read('Card to Play? '))
     played = self.hand[pick]
     self.discard(played)
     Utils.write('')
     played.effect(self, self._other_players())
开发者ID:jawsthegame,项目名称:loveletter,代码行数:9,代码来源:player.py

示例3: pick_player

# 需要导入模块: from utils import Utils [as 别名]
# 或者: from utils.Utils import read [as 别名]
 def pick_player(self, others):
   for i, player in enumerate(others):
     text = '%d: %s' % (i, player.name)
     if player.immune:
       text += " (immune)"
     Utils.write(text)
   pick = int(Utils.read('Which Player? '))
   return others[pick]
开发者ID:jawsthegame,项目名称:loveletter,代码行数:10,代码来源:card.py

示例4: effect

# 需要导入模块: from utils import Utils [as 别名]
# 或者: from utils.Utils import read [as 别名]
  def effect(self, player, others):
    for i, t in enumerate(CARD_TYPES[1:]):
      _, name = t
      Utils.write('%d: %s' % (i, name))

    pick = int(Utils.read('\nCard Type? '))
    card_type = CARD_TYPES[pick+1]

    other = self.pick_player(others)
    if self.check_immunity(other): return

    self.assert_hand(other)
    if other.hand[0].type_ == card_type:
      Utils.write('\nMATCH! %s is out of the round.' % other.name)
      other.active = False
    else:
      Utils.write('\nNo match.')
开发者ID:jawsthegame,项目名称:loveletter,代码行数:19,代码来源:card.py

示例5: load_articles

# 需要导入模块: from utils import Utils [as 别名]
# 或者: from utils.Utils import read [as 别名]
 def load_articles(self):
     sections = {'TITLE': 0, 'BOLD': 1, 'BODY': 2}
     for ID in self.timeline:
         article = Utils.read(ID, self.serwismap[ID])
         self.titles.insert(ID, article[sections['TITLE']])
         self.texts.insert(ID, ' '.join([article[sections['BOLD']], article[sections['BODY']]]))
开发者ID:piotrgrudzien,项目名称:WebCrawling,代码行数:8,代码来源:SimilarityFinder.py


注:本文中的utils.Utils.read方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。