從另一個腳本呼叫一個腳本
問題:
如何執行一個腳本來自另一個名為“service.py”的腳本,該腳本名為“test1.py”,該腳本作為服務?
答案:
要從另一個腳本呼叫一個腳本,通常採用以下方法使用:
test1.py:
def some_func(): print('in test 1, unproductive') if __name__ == '__main__': # test1.py executed as script # do something some_func()
service.py:
import test1 def service_func(): print('service func') if __name__ == '__main__': # service.py executed as script # do something service_func() test1.some_func()
此方法包括執行以下步驟:
以上是如何從另一個 Python 腳本執行一個 Python 腳本,尤其是當一個 Python 腳本是一項服務時?的詳細內容。更多資訊請關注PHP中文網其他相關文章!