【Python】如何在VBA中調用Pyt
- 2020 年 1 月 9 日
- 筆記
背景:
已有一個Python腳本實現了部分功能,想使用VBA直接調用Python腳本
Python腳本如下:
import time def hello(name): return "Hello, " + name + "!" print hello("World") #延時關閉windows控制台,使得用戶可以看到運行結果 time.sleep(150);
方法如下:
<pre name="code" class="vb">Sub test() Call Shell("C:Python27Python.exe C:UsersHongxingDesktoppy2exeHello.py", vbNormalFocus) End Sub