traceback

    0熱度

    1回答

    我一直在努力做一個氣象站,我希望能夠自動將當前天氣發佈到Twitter。到目前爲止,我已經能夠很容易地發佈正規的字符串,如t.statuses.update(status= 'twitter post!') 但每當我嘗試發佈一個變量,例如當前的溫度,我得到這個錯誤: Traceback (most recent call last): File "/home/pi/Desktop/Python2P

    0熱度

    1回答

    代碼我從錯誤中有/定義變量: def preFight(): global enemy enemynum=random.randint(1,3) if enemynum==1: enemy=goblinIG elif enemynum==2: enemy=zombieIG elif enemynum==3: en

    1熱度

    1回答

    sys.exc_info()返回一個元組(類型,值,追溯)。 so sys.exc_info()[2]是我們的追溯對象。 爲什麼它沒有捕獲異常,回溯這段代碼: import sys try: 1/0 except ZeroDivisionError: print sys.exc_info()[2].tb_frame.f_back tb_frame和f_back使用已經

    1熱度

    1回答

    我正在嘗試使用Ply進入Unity3D環境的開源項目https://github.com/ssouzawallace/blocks-programming的Logo語言編譯器。 要做到這一點,我使用IronPython是一個在.NET中運行的Python解釋器(我需要這個在Uinty3D中運行)。在IronPython中有一個bug,我發現其他人也遇到了與python腳本執行追蹤相關的問題。 在簡

    -1熱度

    1回答

    我想從用戶輸入數據,並把它轉換成文本文件,但如下有一個錯誤: Exception in Tkinter callback Traceback (most recent call last): File "C:\Users\dasom\AppData\Local\Programs\Python\Python35-32\Lib\tkinter\__init__.py", line 1549

    2熱度

    1回答

    我最近被給了一個三星齒輪S2,並要求開發它。我有一些與Andorid合作的經驗,並且發現兩者相似,但是當我的Tizen應用崩潰時,我找不到任何回溯。我已經嘗試打開命令提示符並運行「sdb.exe dlog」,它顯示了一些正在發生的消息,但似乎沒有任何回溯到我的原始代碼。我是否正確調試或只是不在正確的位置?做Tizen觀看網絡應用程序/本機應用程序/ widget應用程序甚至會產生回溯? 謝謝!

    1熱度

    1回答

    我有一個實現Python腳本內置Web服務器: class http_server(BaseHTTPRequestHandler): def log_message(self, format, *args): # prevent the BaseHTTPServer log messages, we use our own logging instead retu

    0熱度

    1回答

    我不時地用Python編寫一個通用函數,它被不同的參數多次調用。通常,這是由其他地方的定義驅動的。 例如: def issue_sql_query(name, select_stmt): ... QUERIES = [ "get_user_rows", "SELECT name, rowid FROM table WHERE type == 'USER';" ..

    3熱度

    1回答

    我想訪問在子進程中運行的python程序的回溯。 The documentation說:的my_sub_program.py Exceptions raised in the child process, before the new program has started to execute, will be re-raised in the parent. Additionally, the

    2熱度

    2回答

    當我如一個語法錯誤,我得到的文本塊: File "<stdin>", line 1, in ? while True print('Hello world') while True print('Hello world') ^ SyntaxError: invalid syntax 我做了一些研究,我發現有三個標準流... 「三個I/O連接稱爲標準輸入(