AttributeError:'module'对象没有属性'mode'

时间:2014-05-18 17:57:54

标签: python pygame

screen = pygame.display.mode([1000, 600])

clock = pygame.time.Clock()

p1x = 10

p1y = 250

p1score = 0

p2x = 950

p2y = 250

p2score = 0

AttributeError:'module'对象没有属性'mode'

1 个答案:

答案 0 :(得分:1)

方法是set_mode。所以将第一行改为:

screen = pygame.display.set_mode([1000, 600])