2016-01-14 51 views

回答

1

您应该删除位于文件末尾的行from chess import *,它不应该是必需的。

另外,除非模块中的代码作为脚本执行,否则通常会确保某些代码不会执行。

if __name__ == '__main__': 
    # Not executed if the module is imported 
    g = Game()