python-exec

    0熱度

    1回答

    我有一個Python供電的DSL,我通過exec()執行。此DSL包含通過CFFI的本地函數調用。 調用一個只有2 C調用深度的本機函數時,堆棧溢出(所以你使它不可執行!)崩潰,在每個C函數中只有少數uint16_t被分配到棧中。 Python應用程序是一個tkinter GUI,它通過定時器(master.after(1000, self.tick))事件調用DSL,這可能會佔用堆棧本身的很大一

    0熱度

    1回答

    似乎有些人正在努力構建使用Matplotlib庫的Python可執行文件。 我使用CX_Freeze並能創造我的GUI不圖一個可執行文件,但添加了matplolib庫中的圖形時,當我嘗試運行可執行文件,我得到錯誤: from .import _methods ImportError: cannot import name '_methods' 有任何人設法得到這個工作?

    1熱度

    1回答

    代碼我寫 tile1=0; player1=1; turn=player1 def s(): global tile1,turn,player1 print("Before",tile1) string='tile' + '1' # I am getting 1 by some function that's why I need to create variab

    1熱度

    1回答

    我有一個項目試圖動態創建一個新模塊,然後在隨後的exec語句中嘗試導入該模塊。 import imp s=""" class MyClass(object): def __init__(self): pass def foo(self): pass """ mod = imp.new_module("testmodule.testA") e

    3熱度

    2回答

    在python3,當我運行 >>> exec("","","") TypeError: exec() arg 2 must be a dict, not str >>> exec("print('Hello')", print("World"), print("!")) World ! Hello >>> type(print("World")) World <class 'Non

    0熱度

    1回答

    我對Python很新穎。我試圖修改一個腳本,使其在無限循環中運行,從控制檯獲取Python代碼行並執行Python代碼行。 我談論的東西,可以做下面的例子: Shell> myconsole.py > PredefindFunction ("Hello") This is the result of the PredefinedFunction: Hello!!! > a=1 > if a