python中为什么无法导入类_python中自己的类不能被导入
我自己编写了一个类class Settings():def __init__(self):self.screen_width=1200self.screen_height=800self.bg_color=(230,230,230)然后我想在引用import sysimport pygamefrom settings import Settingsdef run_game():pygame.ini...