首頁 > 後端開發 > Python教學 > Python 的 `eval`、`exec` 和 `compile` 函數有什麼不同?

Python 的 `eval`、`exec` 和 `compile` 函數有什麼不同?

Patricia Arquette
發布: 2024-12-11 18:17:10
原創
637 人瀏覽過

What are the Differences Between Python's `eval`, `exec`, and `compile` Functions?

eval、exec 和compile 之間的區別

簡介

Python 提供了三個用於動態執行程式碼的強大工具:eval、 exec 和compile 。每個都有特定的用途,了解它們的差異非常重要。

eval

Eval 用來計算單一表達式。它採用表示表達式的字串並傳回其值。例如:

a = 5
result = eval('a + 10')
print(result)  # Output: 15
登入後複製

exec

Exec 用來執行一段程式碼。它採用一個表示代碼的字串並傳回 None。例如:

my_code = """
for i in range(5):
    print(i)
"""

exec(my_code)
# Output:
# 0
# 1
# 2
# 3
# 4
登入後複製

compile

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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板