了解函數/方法呼叫中括號的省略
在Python 中,您可以在函數或方法中省略括號(中括號)調用而不會導致錯誤。這種行為源自於這樣一個事實:函數和方法在 Python 中被視為一等物件。
正如文章「In Python, What does '
為什麼省略括號?
您可能希望在函數/方法中省略括號的原因有多種call:
如果my_long_running_function 之後包含括號,它將在主執行緒中執行,從而破壞了多處理的目的。
結論from multiprocessing import Process def my_long_running_function(): # Perform some long-running operation t = Process(target=my_long_running_function)
以上是什麼時候可以在 Python 函數/方法呼叫中省略括號?的詳細內容。更多資訊請關注PHP中文網其他相關文章!