繁体   English   中英

TypeError:“ int”对象没有属性“ __getitem__”

[英]TypeError: 'int' object has no attribute '__getitem__'

我正在尝试使用pygame中的rects来制作游戏表面。 我不确定问题到底出在哪里,但我相信这与创建rect时列表的实际迭代有关。 抱歉,这是菜鸟。 :)

import pygame

w = 800
h = 600
board_pos = 0, 0
tile = 27
playfield = 0

class Board(object):
    def __init__(self, surface, pos, tile_size):
        self.surface = surface
        self.x, self.y = pos
        self.tsize = tile_size
        self.color = 50, 50, 50

        playfield = [list(None for i in xrange(22)) for i in xrange(10)]  

    def draw(self):
        for i in xrange(10):
            for j in xrange(22):
                playfield[i][j] = pygame.draw.rect(self.surface, self.color,
                                                  (self.x + (i * self.tsize),
                                                   self.y + (j * self.tsize),
                                                   self.tsize, self.tsize))

pygame.display.init()
screen = pygame.display.set_mode((w, h))

board = Board(screen, board_pos, tile)
board.draw()

while __name__ == '__main__':
    pygame.display.flip()

我不断收到此错误:

Traceback (most recent call last):
  File "C:\Documents and Settings\Administrator\My
Documents\Dropbox\Programming\DeathTris
\test2.py", line 30, in <module>
    board.draw()
  File "C:\Documents and Settings\Administrator\My
Documents\Dropbox\Programming\DeathTris
\test2.py", line 24, in draw
    self.tsize, self.tsize))
TypeError: 'int' object has no attribute '__getitem__'

任何帮助,将不胜感激。 谢谢!

您的行playfield = [list(None for i in xrange(22)) for i in xrange(10)]__init__函数内创建局部变量。 __init__函数返回后,该变量消失。 draw稍后部分,当您执行playfield[i][j] ,您将访问playfield的全局值,该值仍为0(因为在开始时将其初始化为0)。

如果要从__init__内部覆盖全局运动场,则需要先执行global playfield然后再分配给它。 (但是……为什么您仍然为此使用全局变量?)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM