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


Python Table.lock_table方法代码示例

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


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

示例1: Player

# 需要导入模块: from Table import Table [as 别名]
# 或者: from Table.Table import lock_table [as 别名]
PLB.record_match(PLA, 0, 2)
PLA.record_match(PLB, 2, 0)
print 'PLB.game_win_percent() : ', PLB.game_win_percent()

# Table tests

PLA = Player('John', 'Sheridan')
PLB = Player('Jeffrey', 'Sinclair')
PLC = Player('BYE', 'BYE')
TA0 = Table(PLA, PLB)
TA1 = Table(PLC, PLA)
TA2 = Table(PLB, PLC)

print TA0
TA0.report_match(2, 1)
TA0.lock_table()
print TA0.report_match(1, 2)
print TA0.inverse_copy()
print TA1
print TA2

# Tournament module tests

# Tournament.number_rounds() tests
print 'Tournament.number_rounds(192, True, 4):', \
    Tournament.number_rounds(192, True, 4)
print 'Tournament.number_rounds(384, True, 2):', \
    Tournament.number_rounds(384, True, 2)
print 'Tournament.number_rounds(512, True):', \
    Tournament.number_rounds(512, True)
开发者ID:cmartello,项目名称:deceit,代码行数:32,代码来源:test_all.py


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