我得到這個錯誤:Python的 - 導入錯誤:沒有模塊名爲「矢量」
Traceback (most recent call last):
File "C:\Users\marcos_brinner\Desktop\jogo.py", line 11, in <module>
from vector import *
ImportError: No module named 'vector'
我不能在網上找到vector
模塊。
Code如下:
try:
import sys
import random
import math
import os
import getopt
import pygame
import pickle
import copy
from collections import *
from socket import *
from pygame.locals import *
from vector import *
import yaml
import pygame.mixer
import ConfigParser
except ImportError, err:
print "couldn't load module. %s" % (err)
sys.exit(2)
你可以添加鏈接到教程不只是完整的代碼? – GWW
是不是教程鏈接它是一個完整的代碼鏈接是我的錯寫「教程鏈接」 –
有沒有一個上下文,你從這個代碼獲得? – GWW