Python 提供了三個用於動態執行程式碼的強大工具:eval、 exec 和compile 。每個都有特定的用途,了解它們的差異非常重要。
Eval 用來計算單一表達式。它採用表示表達式的字串並傳回其值。例如:
a = 5 result = eval('a + 10') print(result) # Output: 15
Exec 用來執行一段程式碼。它採用一個表示代碼的字串並傳回 None。例如:
my_code = """ for i in range(5): print(i) """ exec(my_code) # Output: # 0 # 1 # 2 # 3 # 4
Compile 用於將程式碼編譯為字節碼,然後由解釋器執行。它需要一個表示程式碼的字串和一個模式(“eval”、“exec”或“single”)。
在「eval」模式下,compile 將單一表達式編譯為傳回表達式值的位元組碼。在“exec”模式下,它將程式碼區塊編譯為傳回 None 的字節碼。在“單一”模式下,它將單一語句或表達式編譯為字節碼,並列印表達式值的表示。
例如:
bytecode = compile('a + 10', 'my_code', 'eval') result = eval(bytecode) print(result) # Output: 15 bytecode = compile(""" for i in range(5): print(i) """, 'my_code', 'exec') exec(bytecode) # Output: # 0 # 1 # 2 # 3 # 4
Function | What it does |
---|---|
eval | Evaluates a single expression |
exec | Executes a block of code |
compile | Compiles code into bytecode |
以上是Python 的 `eval`、`exec` 和 `compile` 函數有什麼不同?的詳細內容。更多資訊請關注PHP中文網其他相關文章!