我是靠谱客的博主 正直小土豆,最近开发中收集的这篇文章主要介绍python中为什么无法导入类_python中自己的类不能被导入,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

我自己编写了一个类

class Settings():

def __init__(self):

self.screen_width=1200

self.screen_height=800

self.bg_color=(230,230,230)

然后我想在引用

import sys

import pygame

from settings import Settings

def run_game():

pygame.init()

ai_settings=Settings()

screen=pygame.display.set_mode(

(ai_settings.screen_width,ai_settings.screen_height))

pygame.display.set_caption("Alien Invasion")

bg_color=(230,230,230)

while True:

for event in pygame.event.get():

if event.type==pygame.QUIT:

sys.exit()

screen.fill(ai_settings.bg_color)

pygame.display.flip()

run_game()

但是最后的结果是这样的

Traceback (most recent call last):

File "alien_invasion", line 5, in

from settings import Settings

ModuleNotFoundError: No module named 'settings'

我不知道到底是什么原因,是path问题还是我的设置有问题,我用的是geany

最后

以上就是正直小土豆为你收集整理的python中为什么无法导入类_python中自己的类不能被导入的全部内容,希望文章能够帮你解决python中为什么无法导入类_python中自己的类不能被导入所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部