I'm a new beginner in python development.
I'm trying to practice win32com.client module, and there's some error that is very confused.
first, I tried it.
import win32com.client
word = win32com.client.Dispatch("Word.Application")
word.Visible = True
Clearly, it works well. So I tried below.
import win32com.client
excel = win32com.client.Dispatch("Excel.Application")
excel.Visible = True
It works like Word but closed very a few seconds later. I don't know why it happens.