Good day! I want to open excel from under Python, but after starting the program closes immediately. Why and how to fix?
from win32com.client import Dispatch def run_app(): xl = Dispatch('Excel.Application') xl.Visible = 1 run_app() Source: https://ru.stackoverflow.com/questions/597469/
All Articles