引用设置类时的Python AttributeError

时间:2018-04-05 17:29:24

标签: python-3.x class pygame

我试图导入名为"设置"的类。进入pygame代码。

主叫代码

import sys # used to exit game when user is done

import pygame

from settings import Settings

def run_game():
    #initialize game and create screen object
    pygame.init()
    ai_settings = Settings()

    screen =pygame.display.set_mode((1200, 800))

settings.py文件

#settings for alien_invasion
class Settings():
    """A class to store all settings for Alien Invasion"""

    def _init_(self):
        #intialize games settings
        self.screen_width=1200
        self.screen_height=800
        self.bg_color=(230,230,230)

我知道这可能是语法错误,但我已经四处搜索,无法找到我做错的事情。

我得到的确切错误是

  

AttributeError:'设置'对象没有属性' screen_width'

0 个答案:

没有答案