python-import

    0熱度

    1回答

    我有一個文件結構如下圖所示導入類, MainFolder __init__.py FirstFolder __init__.py firstFile.py SecondFolder __init__.py secondFile.py 裏面firstFile.py,我有一個名爲class和

    0熱度

    1回答

    我已經在目錄/usr/local/share/pynids-0.6.3中從https://bitbucket.org/jmichel/pynids運行Jessie Light的Raspberry Pi v.2上安裝了pynids(pynids-0.6.3),如下所示: ` cd /usr/local/share/pynids-0.6.3 python3 setup.py build pytho

    0熱度

    2回答

    假設我有一個變量可以幫助我在一個我正在導入的模塊中使用的網絡連接(例如:API訪問令牌)(用於擴展現有函數),有沒有辦法通過變量到導入的腳本而無需添加新的類或方法來初始化它? 如: 一個腳本(performer.py): import telepot import botActions # Possibly adding an argument here? botActions.sendMe

    0熱度

    2回答

    我想對文件之間的導入變量進行更改。 參見下例: file1.py string = 'data1' def change_string(): global string string = 'data2' #this does not update string in file2 change_string() file2.py from file1 import

    1熱度

    1回答

    相對進口 我使用python 2: python --version Python 2.7.13 :: Continuum Analytics, Inc. 我有以下項目結構: . └── foo ├── bar1 │   ├── __init__.py │   └── mod1.py ├── bar2 │   ├── __init__.py

    -4熱度

    1回答

    我想從我的Leo.py文件導入變量我Max.py文件是這樣的:Leo.py: > import tkinter import time import os import Max from tkinter import * > from tkinter import messagebox as tkMessageBox from selenium import > webdriver from

    4熱度

    1回答

    我正在運行一個Ubuntu虛擬機,Python 3.6.1,Anaconda 4.4.0(64位)。我正在嘗試運行the code on this website。 當我嘗試使用 import cv2.aruco 我得到: >>> import cv2.aruco Traceback (most recent call last): File "<stdin>", line 1, in

    -1熱度

    1回答

    我得到錯誤沒有模塊名爲mock。我已經嘗試點安裝模擬但沒有幫助,我檢查了http://hg.python.org/cpython/file/default/Lib/unittest/mock.py並運行它,它有錯誤..我不知道如何處理它。 我該如何使它工作? Python版本2.7

    0熱度

    1回答

    我收到使用Python熟悉,特別是pygame的圖書館。我開始試圖通過YouTube教程製作自己的2D角色扮演遊戲。我從我的工作電腦到GitHub的備份我的整個項目,但是當我克隆庫到我的個人電腦,即使它的工作原理我的另一臺計算機上我的主類不承認我的任何進口。 我的文件結構: project folder | ----- main.py | ----- map_editor.py | +

    1熱度

    1回答

    我有兩個Python腳本,一個testclass.py: import numpy zz = numpy class Something(object): def __init__(self): self.xp = zz 和一個testscript.py: from testclass import Something x = Something() print