xlwings:如何获取单元格的值并指示消息框

xlwings: How to acquire the value of the cell and to indicate message box

我在 Windows 上使用 xlwings。 我获取单元格的值,想要指示消息框。

import xlwings as xw
import win32ui

def msg_box():
    wb = xw.Book.caller()
    win32ui.MessageBox(xw.sheets[0].range(4, 1).value,"MesseageBox")

但是,Python 停止了。谁能帮我修好它?谢谢。

在 Windows 上,像这样的方法应该可以作为解决方法:

import xlwings as xw
import win32api

def msg_box():
    wb = xw.Book.caller()
    win32api.MessageBox(wb.app.hwnd, "YourMessage")